1new Array(5).fill('element')
2// ["element", "element", "element", "element", "element"]
1fill(val);
2fill(val, start); //fills array with value of val at index start
3fill(val, start, end); //fills array with value of val at index start to index end
4