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.

Ethan Gonzalez
Courses Plus Student 3,354 Pointsim not exactly sure where I'm supposed to put the spacing? I tried between firstName and lastName varibles, but no luck.
let firstName = "Ethan";
let lastName = "Gonzalez";
let role = 'developer';
let msg = firstName + lastName + role;
2 Answers

ahmed suleman
5,282 Pointsso within the quotation marks there should be a space instead of this ‘without space’ it would be “ with space"

lindsey howard
Full Stack JavaScript Techdegree Student 6,933 Pointsyou will need quotes for static strings to insert spacing and/or punctuation between the terms
an example would be....
let dogName = 'bella';
let breed = 'lab mix';
let x = dogName + " " + ":" breed;
Ethan Gonzalez
Courses Plus Student 3,354 PointsEthan Gonzalez
Courses Plus Student 3,354 Pointsevery time i submit this answer I get an error that I should: Make sure you're adding one space (' ') between
firstName
andlastName
.