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, Arrays and Objects Tracking Data Using Objects The Build an Object Challenge, Part 2 Solution

1 Answer

Hi Richard, you are getting an undefined because you are calling the name property, the track property on array of object instead of calling it on the studentinfo variable, which is keeping track of the current student. By doind this, you should be able to call the property and you shouldn't get undefined anymore.

So, here is the code:

for (var i = 0; i < students.length; i += 1) {
  studentinfo = students[i];
  message = "<h2>Student : " + studentinfo.name + "</h2>.";
  message += "<p>Track : " + studentinfo.track + "</p>.";
  message += "<p>Points : " + studentinfo.points + "</p>.";
  message += "<p>Achievements : " + studentinfo.achievements + "</p>.";
  print(message);
}

Do not forget to mark as best answer if it helped you!