Hello, I just want to create an array of numbers counting from 1 to a given number. At the moment I have the for loop running like this: var i=0; for (i=1;i<=10;i++) { if (i == 1) { document.write(i); } else { document.write(", " + i); } } This outputs 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 How ...