Analyze the following code:
double[] c = {1, 2, 3};
System.out.println(java.util.Collections.max(c));
◦ The code has a compile error on Collections.max(c). c cannot be an array.
◦ The code is correct and displays 3.
◦ The code has a compile error on Integer[] c = {1, 2, 3}.
◦ The code is correct and displays 3.0.