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 trialColby Kyes
2,893 PointsStuck 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?
for ( let i = 5; i <= 100; i ++ ){
console.log(`the new number is ${i}`);
}
1 Answer
jb30
44,806 PointsThe 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);
Colby Kyes
2,893 PointsColby Kyes
2,893 PointsThank you!