Count the number of even and odd elements in an array of integers. Since you must return two counts, place them into an array of length 2. For example, if you are given the array

1, 4, 9, 16, 25

you return the array with elements

2, 3

since there were two even and three odd elements.

Complete the following code:

public class Numbers
{
   /**
      Computes the number of even and odd values in a given array
      @param values an array of integer values
      @return an array of length 2 whose 0 entry contains the count
      of even elements and whose 1 entry contains the count of odd
      values
   */
   public static int[] evenOdds(int[] values)
   {
      // your work here



   }
}