Store a lot of data without need to declare different variables for each data. And since all the data will be under one array, is more convenient to access them.
Saves space and also commonly used on loops like FOR loop.
@autz a question i've always had is exactly wat is the difference between a variable and an array and how wud i access data it stores,btw i know how 2 set 1 up tho
@#yolo A variable is, well, a value that can change. While an array is like a set of variables, where each position is like an individual variable. On some cases you will need more than 10 variables, so instead of doing this:
Vl1
Vl2
Vl3
...
You use arrays like this:
DIM Vl[3]
And to access or setting data on it, you use the index [] from 0 to the size of the array:
Vl[2]=5