Help please
I’ve been stuck on this question for weeks. Can anyone help? The program you are given takes 5 numbers as input and stores them in an array. Complete the program to go through the array and output the the sum of even numbers. Sample Input 10 890 15 3699 14 Sample Output 914 Hint An integer is even if it is divisible by two, so it means that n number is even if n%2 equals 0. What I have so far: static void Main(string[] args) { int[] numbers = new int[5]; int count = 0; while (count <5) { numbers[count] = Convert.ToInt32(Console.ReadLine()); count++; } //your code goes here int x = 0; foreach(int sum in numbers) { if (sum % 2 == 0) { x += sum; Console.WriteLine(x ); }