Complete the method, named bigSum, in the class named ArrayOps.java. The only parameter to this method is a two-dimensional array of integers with only 2 rows. This method should sum each row of integers separately, and then decide which of the two sums is larger. This larger sum is the return value for this method.
For example, suppose the array contains the following data:
[ [ 25, 16, 14 ] [ 13, 27, 22 ] ]
The sum of the first row is (25 + 16 + 14) = 55, while the sum of the second row is (13 + 27 + 22) = 62. Comparing, we see that the sum of the second row is the larger sum; hence, the method returns the integer 62.
You might think of this as comparing the test grades of two students.