A.1. Array allows us to you store multiple values in a single variable i.e. a collection of variables of the same type. For example,
var fruits = new Array(“apple”, “orange”, “mango”);
A.2. Index zero [0] allows access to the first element in an array . For this example the first element = “apple”.
var fruits = [“apple”, “orange”, “mango”];
fruits[0] is the first element
fruits[1] is the second element
fruits[2] is the third element