Arrays in Java
An array is an object that holds a fixed number of values of a certain variable type. There are many uses for arrays; they allow programmers to not need to declare a new variable for each value stored. If ten numbers need to be stored (ages, weights, wages, etc.), a single array with ten components may instead be used.