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 trialKaitlyn Votel
1,984 Pointsvar msg = firstName + ' ' + lastName + ':' + role; ^ why does it think this is wrong?
let firstName = 'kate';
let lastName = 'votel';
let role = 'developer';
var msg = firstName + ' ' + lastName + ':' + role;
John D
7,237 PointsJohn D
7,237 Pointslogging the code to the console seems to work just fine for me, what error message are you getting?
Try adding a space after the colon within your ": "