Declaring an array is very similar to declaring a variable, except you need to declare the dimension of the Array right after its name:
Dim myArray(9) As String 'Declaring an array that will contain up to 10 strings
By default, Arrays in VBA are indexed from ZERO, thus, the number inside the par...