Which two cause a compiler error?
int[] scores = {3, 5, 7};
int [][] scores = {2,7,6}, {9,3,45};
String cats[] = {“Fluffy”, “Spot”, “Zeus”};
boolean results[] = new boolean [3] {true, false, true};