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 trialMeg Dooley
7,321 PointsWhat's wrong with my code?! Here's a link to my code for challenge 2. https://w.trhou.se/vvo4fyntfc
It's not logging anything to the console and I can't understand why. Please help!
2 Answers
Steven Parker
231,898 PointsOn line 39 of "2_loop.js", the conditional clause of the "for" loop references "createRandomList.length".
But "createRandomList" is the name of a function. the actual list name is "myRandomList".
Meg Dooley
7,321 PointsThanks Steven!