public static class Program
public static void Main()
int[] dataToProcessLow = new int[]{2, 3, 4, 5, 6, 7, 8, 9, 10, 12};
int total = EvenNumbers(dataToProcessLow);
Console.WriteLine(total);
int[] dataToProcessHigh = new int[]{10, 20, 30, 40, 50, 65, 60, 70, 80, 90, 100, 103};
int newtotal = EvenNumbers(dataToProcessHigh);
Console.WriteLine(newtotal);
static int EvenNumbers(int[] answers)
foreach (var number in answers)