What is an array?
A big variable that you can get/store values
How do you declare an array?
Dim a(7) as integer
The parenthesis denotes an array
What’s an index? What’s an element?
The index (or subscript) is the LOCATION of the element. The first location is always 0
So in a(7) there are 8 elements: Element 0 in A Element 1 in A .... Element 7 in A
How many elements are in the array stNames (9)?
There are 10 elements, we begin with subscript 0: stNames (0) stNames (1) ... stNames (9)