using System;
public class Program
{
public static void Main()
Console.WriteLine("Choose your favorite food.");
string[] List = {
"chicken",
"tacos",
"beef",
"Yams"
};
Array.Sort(List);
for (int i = 0; i < List.Length; i++) {
int order = i + 1;
Console.WriteLine(order + ". " + List[i]);
}
string w = Console.ReadLine();
Console.WriteLine(w + " is your favorite food.");