public static void Main()
Console.WriteLine("Welcome to List Organizer");
Console.WriteLine("Which List Would You Like To Display: Grocery, ToDo, or Friends");
string answer = Console.ReadLine();
string[] list_of_groc = new string[5];
list_of_groc[0] = "Milk";
list_of_groc[1] = "Bread";
list_of_groc[2] = "Eggs";
list_of_groc[3] = "Chicken";
list_of_groc[4] = "Rice";
foreach (string groc in list_of_groc)
else if(answer == "ToDo")
string[] list_of_todo = new string[5];
list_of_todo[0] = "Take out trash";
list_of_todo[1] = "Feed the birds";
list_of_todo[2] = "Water the flowers";
list_of_todo[3] = "Wash the car";
list_of_todo[4] = "Drop off mail";
foreach (string todo in list_of_todo)
else if(answer == "Friends")
string[] list_of_frie = new string[5];
list_of_frie[2] = "Jake";
list_of_frie[3] = "Cody";
list_of_frie[4] = "Alex";
foreach (string frie in list_of_frie)
Console.WriteLine("Sorry we don't manage that account");