Given the following array declaration/initialization, which statement is true?
String[] names = new String[5];
Group of answer choices
This statement causes five (5) objects to be created: the 5 String objects.
This statement causes one (1) object to be created: the array.
This statement causes six (6) objects to be created: the array and 5 String objects.
This statement causes no objects to be created.