var array = [];

for (var x = 200; x > 100; x++) {

array.push(x)

}

console.log(array);

View all comments