JavaScript erstellen Neuarray mit Standardwerten nach einer Zeile

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