The main issue is this line
var points = new Array(100);
This generates an array with length 100, there are no elements in that array yet. You would want to add these 1-100 numbered elements to the array first such as below. Notice the points.length method has been replaced by the amount of numbers we want to add as the for loop will add each number to the array and print it out each loop over. Instead of declaring Array(100) it is just Array() to make a new empty array. We do not have to declare a size to start with, this differs from languages such as C++ where you need a vector to achieve this result.
Note: .push(x) adds x to the back of the array
var points = new Array();
for (var i = 0; i < 100; i++) {
points.push(i+1)
console.log(points[i]);
}
=> 1, 2, 3, 4, 5, 6, 7, ...