Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Glenn Robinson
4,581 Pointserror msg: Unexpected token ')' 2.41 for(counter = 5, counter < 501, counter++){ console.log(counter); }
for(counter = 5, counter < 501, counter++){
console.log(counter);
}
1 Answer

rydavim
18,780 PointsIt 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!
Glenn Robinson
4,581 PointsGlenn Robinson
4,581 PointsI got help from oakland thanks though