public static void Main(string[] args)
string[] employees = new string [] { "Josh", "Adam", "Micheal", "Jeremy" };
int[] amount = new int[3];
Array.Sort(amount, employees);
for (int i = 0; i < 4; i++)
Console.WriteLine("Enter the amount of cars {0} that have been sold this week:", employees[i]);
amount[i] = Convert.ToInt32(Console.ReadLine());
Array.Sort(amount, employees);
Console.WriteLine("{0} had the most car sales with {0} cars sold this week!", employees[2], amount [2]);
total = amount[0] + amount[1] + amount[2] + amount[3];
Console.WriteLine("{0} cars have been sold this week", total);