I know that the array declaration below is correct:
String[][] arrayNew={{"teresa","human","jennifer"},{"18","20"},{"nothing"}};
I understand that String and array are two different object types in java.So how come the string array arrayNew is successfully storing three different arrays in it.
An int array can not store doublesbut how come a string array is able to store arrays?