Write a function that takes an array of numbers and returns the sum of all even numbers in the array.
Input: [1, 2, 3, 4, 5, 6]
Output: 12 (2 + 4 + 6)
sumEvenNumbers
Run your code to see the output...
Activity will be logged here during the test...