const Number = 60; const arr = Array.from({length:Number+1},(item, index) => index);
const arr = Array.from(Array(Number+1),(item, index) => index);