var array = [];

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

array.push(x)

}

return array;

SyntaxError: Illegal return statement
View all comments