Array is a variable in which a series of values are stored.
To declare an array named Array_example that contains three elements this command should be written:
Dim Array_example(3)
With the command Dim the dimension (the length) of the array is defined.
So, dim data(10) means that the Name of the array is "data" and it has 10 elements of components.