CHALLENGE ACTIVITY 3.10.1: Using bool. Assign is Teenager with true if kidAge is 13 to 19 inclusive. Otherwise, assign is Teenager with false. 1 #include 2 #include 3 4 int main(void) { 5 bool isTeenager; int kidAge; 7 8 scanf("%d", &kidAge); 9 /* Your solution goes here */ 11 12 if (isTeenager) { 13 printf("Teen\n"); 14 } 15 else { 16 printf("Not teen\n"); 17 } 18 10 Run View your last submission