JavaScript Создайте новый массив со значениями по умолчанию по одной строке

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