make array to push item and access it with index java script code example
Example 1: what are the two ways to create an array in javascript examples?
let scores = new Array(9,10,8,7,6);
Example 2: how to get create an array in javascript
let names = ['Michael', 'Adam', 'NetNinja'];
//now you are free to use the array
conosle.log(names[0]);