public static void Main()
string[] arr = new string[10];
Console.WriteLine("__________________________OTG_RESTAURANT___________________________");
Console.WriteLine("______________________________M_E_N_U______________________________");
Console.WriteLine("|\t•Starter•" + "\t\t|" + "\t•Seafood•" + "\t\t|" + "\t•Steaks•" + "\t\t |");
Console.WriteLine("|Boneless Wings" + "\t |" + "Fresh Salmon" + "\t\t |" + "Royal Serloin" + "\t\t|");
Console.WriteLine("|Mozarella Moon" + "\t |" + "Fish & chips" + "\t\t |" + "Sliced Serloin" + "\t |");
Console.WriteLine("|Seared Steak" + "\t\t |" + "Baked Schrod" + "\t\t |" + "Prime Rib" + "\t\t\t|");
Console.WriteLine("|Chicken Dip" + "\t\t |" + "Beer Battered Fish" + " |" + "Mushroom Serloin" + "\t |");
Console.WriteLine("|Nachos" + "\t\t\t |" + "Tuna Melt" + "\t\t\t|" + "Smothered Tips" + "\t |");
Console.WriteLine("|_____________________|_____________________|_____________________|");
Console.WriteLine("|\t•Drinks•" + "\t\t |" + "\t•Salads•" + "\t\t |" + "\t•Desserts•" + "\t |");
Console.WriteLine("|Juice" + "\t\t\t\t|" + "House Salad" + "\t\t |" + "Fudge Cake" + "\t\t |");
Console.WriteLine("|Coca-Cola" + "\t\t\t|" + "Caesar Salad" + "\t\t |" + "Streusel Pie" + "\t\t |");
Console.WriteLine("|Very Berry" + "\t\t |" + "Chicken Salad" + "\t\t|" + "Fudge Sunday" + "\t\t |");
Console.WriteLine("|_____________________|_____________________|_____________________|");
for (int ctr = 0; ctr <= 9; ctr++)
Console.WriteLine("\nTable [" + (ctr + 1) + "]: ");
string table = Console.ReadLine();
Console.Write("Please input the order: ");
string item = Console.ReadLine();
Console.WriteLine("Searching please wait a second/s...");