array with html elements code example
Example 1: what are the two ways to create an array in javascript examples?
let scores = Array(10);
Example 2: javacript array
[element0, element1, ..., elementN]
new Array(element0, element1[, ...[, elementN]])
new Array(arrayLength)