write a public static method named sumandavg that will take an int array as it's only argument. this method will return a double array. when called, and passed an array of int values, this method will return an array containing exactly two double values. the first value in the returned array will be the sum of all the values in the argument array, and the second value in the returned array will be the average of all the values in the argument array.