Create a function that returns the minimum number of removals to make the sum of all elements in an array even.
minimumRemovals([1, 2, 3, 4, 5]) ➞ 1
minimumRemovals([5, 7, 9, 11]) ➞ 0
minimumRemovals([5, 7, 9, 12]) ➞ 1
0 (see example #2).0 or 1.