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

Ferenc Torok
Ferenc Torok
1,436 Points

JS Loops > for() My solution works but the system can't accept it.

for ( let i = 5; i < 101; i++ ) { console.log( ${i} ); }

What's wrong with it?

Thank you.

script.js
for ( let i = 5; i < 101; i++ ) {
console.log( `${i}` );
}
Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,777 Points

Ferenc Torok yeah sometimes the code checker gets confused with things like Template literals if its not expecting them. Nice job figuring it out. I changed your comment to a answer and made it the best answer because..... well it is! Keep at it!

1 Answer

Ferenc Torok
Ferenc Torok
1,436 Points

I figured out.

Instead of : console.log( ${i} ); Just used : console.log( i );

I added some text to the concole log, before, that's why left it like that. Same result, but the course checker like it, now.