You can get elements out of arrays if you know their index. Array elements' indices start at 0 and increment by 1, so the first element's index is 0, the second element's index is 1, the third element's index is 2, etc.
(example)
var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37];
primes[0]; // 2