Cetak seluruh array java

String[] array = new String[] {"John", "Mary", "Bob"};
System.out.println(Arrays.toString(array));
Outstanding Ocelot