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.

Sal Mike
71 PointsCan Anyone please tell me whats wrong with my extra challenge code.?
Can Anyone please tell me whats wrong with my extra challenge code.?
Here is the snapshot: https://w.trhou.se/s4pwx1a3wm
3 Answers

Nikica Maksimovski
Full Stack JavaScript Techdegree Student 14,080 Pointson the first line of the students_report.js file you have a typo. U typed vvar instead of var.

Jennifer Nordell
Treehouse TeacherHi there! Here is what I see so far. And I get down to the third error, but I'm not sure exactly what you're trying to accomplish so I don't have a definitive answer for what you are looking for.
However, on line #1 of students_report js you have written:
vvar isntead of var
, which is causing a syntax error
Your getStudentReport
function is missing a closing curly brace }
, which means that the while
that is calling it is located inside the function.
You never initalize the student
variable to hold an array so when you hit this line:
student.push( students[i].names.toLowerCase() );
... you are unable to push to it. Because you can't use a push
method on an undefined object.
Try correcting these 3 things and then seeing if you can move forward!

Sal Mike
71 PointsI am trying to accomplish the extra challenges that has been told in the video. I have fixed them and its still not working: https://w.trhou.se/hw5lza7zbu
Can you please help me out.

Sal Mike
71 PointsI am trying to accomplish the extra challenges that has been told in the video. I have fixed them and its still not working: https://w.trhou.se/hw5lza7zbu
Can you please help me out.