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.

Roger Dailey
14,887 PointsI do not understand what it is asking?
I'm lost on what it is asking me to do?
var contact = {
firstName: "Andrew",
lastName: "Chalkley",
fullName: function(){
console.log(this.firstName + " " + this.lastName);
}
}
1 Answer

danheffernan
10,004 PointsInstead of console.log() they're asking you to to return the value. So replace console.log with the word return and remove the (). This return keyword actually returns the results of the code block back to the program where the function is called. Whereas console.log merely prints it to the console, which is useful for debugging and practice, but not for the program itself.
Roger Dailey
14,887 PointsRoger Dailey
14,887 PointsInstead of logging out the full name, modify the code so it returns the string instead. This is the challenge task.