An array is an indexed collection of data elements. First you must declare an array, give its name and data. Once your arrays are declared, you access the elements in an array with the array name, and the index number inside brackets [ ].
So, in every programming language, when you access data stored in an array, you must use a command [] (brackets) containing a value that accesses memory occupied by the array.