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

Michael Lettau
Michael Lettau
1,703 Points

I'm lost on what the problem is with this program. I've checked over and over.

I'm lost on what the problem is here. It's saying that I need to log each of the numbers, but using only 1 console.log() function. I've gone back and double checked. I've even added in and removed the <div> modifiers, but I'm still getting the same error. Any ideas?

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

1 Answer

millogt
millogt
7,644 Points

You are correct in using your for loop. But you dont have to create extra variables. Just put the console.log() inside the for loop and add the variable i inside the brackets. Good luck!

for ( var i = 4; i <= 156; i += 1) {

}
Michael Lettau
Michael Lettau
1,703 Points

Thank you! I appreciate the support.