/***** Declaring an array of 10 Strings *****/
String[] myList = new String[10];
// prints the second element of the array, since it's [1]
System.out.println( myList[1] );
/***** Declaring and initializing an array of 10 Strings *****/
String[] myList = { null, null, null, null, null, null, null, null, null, null };
// prints the second element of the array
System.out.println(myList[1]);
// OUTPUT
// null