var array = [];

for (var x = 200; x > 100; x-=1) {

array.push(x)

}

console.log(array);

You didn't return anything!
View all comments