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.

Begana Choi
Courses Plus Student 13,124 Pointswhat's wrong with my code?
my code kept making an error. I can't get where my code's problem is.
const userNames = ['Samir', 'Angela', 'Beatrice', 'Shaniqua', 'Marvin', 'Sean']; // Result: [{name: 'Samir'}, {name: 'Shaniqua'}, {name:'Sean'}];
const users = userNames .filter( user => user.charAt(0) === 'S') .map( user => ({name}));
console.log(users);
1 Answer

Ignacio Rocha
7,458 Pointsthe error that your code is making is because the "name" inside the map function is not defined, it's nothing. to solve the problem you need to add the value return value of the map function after the name to make it an object literal. Try this:
const userNames = ['Samir', 'Angela', 'Beatrice', 'Shaniqua', 'Marvin', 'Sean'];
const users = userNames.filter( user => user.charAt(0) === 'S').map( user => ({name: user}));
Begana Choi
Courses Plus Student 13,124 PointsBegana Choi
Courses Plus Student 13,124 Pointsthank you! now I understand this part clearly !!