string choresToddler = "pick up toys and books, put garbage in trash can, put dirty laundry in hamper, put laundry in drawer";
string choresKid = "take care of pets, set and clear the table, make bed";
string choresPreteen = "fold laundry, sweep and vacuum, take out trash, meal prep";
string choresTeen = "babysit siblings, wash windows, do laundry, mow the lawn";
Console.WriteLine("How old is your child?");
age = Console.ToInt32(Console.ReadLine());
Console.WriteLine("Your child is too young to do chores!");
else if (age >= 2 && age <=3){
Console.WriteLine("Your child can do the following chores: " + choresToddler);
else if (age >=4 && age<=6){
Console.WriteLine("Your child can do the following chores: " + choresToddler + choresKid);
else if (age >= 7 && age <= 11){
Console.WriteLine("Your child can do the following chores: " + choresToddler + choresKid + choresPreteen);
Console.WriteLine("Your child can do the follwoing chores: " + choresToddler + choresKid + choresPreteen + choresTeen);