Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Aaron Goldman
5,051 Pointscode challenge: arrays in javascript deep dive
the code challenge says: Set the 'guides' that has placeholders for 42 elements but has no values stored in it.
I tried doing the array constructor, var guides = new array(42); but it said null.
I tried var guides = [1,2,3,] etc.. up to 42 but it said you have 0 undefined values, expecting 42
any suggestions? I didn't hear any thing about place holders in the video, I think that's what's throwing me off.
thanks!
3 Answers

Aaron Goldman
5,051 Pointsnevermind. I figured it out

Ford Henley
5,205 Pointsvar guides= new Array (42);

Aaron Goldman
5,051 Pointsit turns out that "placeholders" just means they want commas. you have to make the array with 42 commas in it.
Carlos (Charlie) Salazar
2,845 PointsCarlos (Charlie) Salazar
2,845 PointsPlease fill us in!