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

Colby Kyes
Colby Kyes
2,893 Points

Stuck on the "create a for loop" challenge

This code block appears to work (prints 5-100 in the console) but the system is saying it's wrong:

Any ideas?

script.js
for ( let i = 5; i <= 100; i ++ ){
  console.log(`the new number is ${i}`);
}

1 Answer

The conditions for your for loop are fine. The challenge wants your first output value to be 5 and your last output value to be 100, which would indicate that you need to change your middle line to console.log(`${i}`);. Unfortunately, the challenge does not accept this as a valid answer. However, it does accept console.log(i);