Which of the following is NOT a correct way to initialize an array of Strings?

String strArr = new String;
  • String[] strArr = new String[3];
  • String[] strArr = {"duck", "duck", "goose"};
  • String[] strArr = new String[x]; where int x = 3;

There are not hints for this question