What does int numbers[5]; declare?
int numbers[5];
Five elements that can each use a different data type.
A list whose size can be expanded later without creating another array.
An array named numbers that can hold five contiguous integer elements.
numbers
One integer variable initialized to the value 5.