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 Working with 'for' Loops Create a for Loop

error msg: Unexpected token ')' 2.41 for(counter = 5, counter < 501, counter++){ console.log(counter); }

script.js
for(counter = 5, counter < 501, counter++){
  console.log(counter);
}

1 Answer

rydavim
rydavim
18,813 Points

It looks like you have two minor issues. Good news is that it looks like you have the important programming aspects correct!

The MDN page for for loops is a great reference for syntax. You'll always want to carefully read the description of the challenge tasks, they are normally looking for very specific output (100 vs 500).

// syntax: replace , with ;
for(counter = 5, counter < 501, counter++){ // stop at 100, not 500
  console.log(counter);
}

That should be it, super painless! Nice work, and happy coding!

I got help from oakland thanks though