JavaScript Buat array baru dengan nilai default dengan satu baris

console.log(Array.from(Array(200), (x, index) => index + 1))
MrStonkus