When you create an array, it allocates storage for the number of elements that you specified for the array in the new statement. The values in the slots are null until you give them values.
So Next you must assign values to each of the slots in the array.
It's a two step process: create the array and fill the array with objects.