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.

Ellie Brain
1,210 PointsCan you please help explain how to arrive at the solution to part 2 of this task?
I am having difficulty with part 2 of this task. I am unable to concatenate var id and var last name. Can you please provide the lines that would complete this task? Thank you.
2 Answers

jcorum
71,816 PointsYou can do it in one line:
var userName = id.toUpperCase() + "#" + lastName.toUpperCase();

Tommy Gebru
30,152 PointsThe challenge wants you to concatenate the id + # + lastname