Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops Create a for Loop

Code is wrong

Why is this wrong though I think its achieving what is being asked? var test = ''; for (var i = 4; i <157; i +=1) { test += i + " "; }

console.log(test);

script.js
var test = '';
for (var i = 4; i <157; i +=1) {
  test += i + " ";
}

console.log(test);

2 Answers

Afrid Mondal
Afrid Mondal
6,255 Points

Hey Rachel, the challenge is asking you to log every number from 4 to 156. So, if you put the console.log() outside the loop it will not log every result on the log. So, it's wrong. And you don't have to declare any variable(test) also.

for (var i = 4; i <157; i +=1) {
  console.log(i);
}

Love that I can't think beyond that actual examples given but this is great. Thank you!