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.

Josh Hamilton
Front End Web Development Techdegree Student 5,201 PointsHaving trouble with this for loop challenge
Hey I'm trying to complete this code challenge and everything looks about right but it wont run. Any help is greatly appreciated.
for (var i = 4; i <= 156; i += 1;) {
console.log(i);
}
1 Answer

Elijah Quesada
Front End Web Development Techdegree Graduate 32,965 PointsYou have a semicolon after i += 1. Remove the semicolon and you're good to go.
You will soon find out that the semicolon is the hide and seek champion in programming. Lol
for (var i = 4; i <= 156; i += 1) {
console.log(i);
}
Josh Hamilton
Front End Web Development Techdegree Student 5,201 PointsJosh Hamilton
Front End Web Development Techdegree Student 5,201 PointsThats hilarious. Yes a very sneaky character indeed.
kim corson
Full Stack JavaScript Techdegree Student 1,783 Pointskim corson
Full Stack JavaScript Techdegree Student 1,783 Pointsthank you, this actually fixed my problem as well!