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 trialRalph Bury
174 Pointsno clue
to be honest not sure what im doing
let firstName = ("Ralph");;
let lastName = ("Bury");
let role = lastname + firtsname = ('developer');
2 Answers
Michael Andrews
3,314 PointsRemove your "()" around you name and developer. should look like this.
let firstName = "Ralph";
let lastName = "Bury";
let role = 'developer';
This assigns your variables the appropriate 'value'. The "()" are confusing your JavaScript. im assuming you are wanting to combine these variables into a string. so you will need to create a variable that will do that. something like...
let msg= firstName + lastName + role;
This will read: "RalphBurydeveloper"
notice there is no spaces. you will need to add space manually in to the string.
let msg = firstName + ' ' + lastName + ' ' + role;
this will read: "Ralph Bury developer"
if you need to add punctuation you will need to add it in to your string as well.
Ralph Bury
174 Pointsthank you!!!