Which of the following choices is the correct syntax for printing an array of integers named a as a comma-separated list of values enclosed in brackets?
a
System.out.println(a.toString());
Arrays a2 = new Arrays(); System.out.println(a2.toString(a));
Arrays.toString(a);
System.out.println(Arrays.toString(a));
System.out.println(a);