Declaring an array variable
float[] averages; averages
Employee[] employees; employees
Declaring a variable does not �allocate� or create the array of elements; it only declares a variable that can contain a reference to an array of elements.
An array is much like a class in that an array variable contains a reference to an array.