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

creating a "for" loop

I am failing to create the loop. where am i going wrong

script.js
for( var counter=156; counter<= 4; counter+=4){document.write(counter)}

1 Answer

Steven Parker
Steven Parker
229,732 Points

It looks like you're starting with 156, but the condition clause is checking for values less than or equal to 4, so it will never be true and the body will never run. You probably have those two values reversed.

Also, it looks like you're incrementing by 4 with each iteration, which would skip most of the values; but this challenge is expecting to see every value in the range.