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 Basics Working with Strings Combine and Manipulate Strings

Kaitlyn Votel
Kaitlyn Votel
1,984 Points

var msg = firstName + ' ' + lastName + ':' + role; ^ why does it think this is wrong?

app.js
let firstName = 'kate';
let lastName = 'votel';
let role = 'developer';

var msg = firstName + ' ' + lastName + ':' + role;

logging 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 ": "

1 Answer

Ruben Suazo
Ruben Suazo
2,146 Points

you would need a space after the colon. For example: ': '