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

how is this wrong?

Its saying it is only running 152 times well i don't need to run it anymore if im starting my var at 4. as 156-4 is 152 or am i looking over something here

script.js
for ( var x = 4; x < 156; x += 1) {
  console.log(x);
}

1 Answer

The error message you receive is "You need to log out EVERY number from 4 to 156 ". You aren't logging 156.

wow thank you. i just had to go to 157 instead thank you again.