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.

Wilbert Brinson
2,037 PointsIm having trouble with this question what am I doing wrong
let firstName = ("wil");
let lastName = ("brein");
let role = ('developer');
msg = "firstName " + "lastName" + ": " + "role";
console.log(msg)
4 Answers

Thomas Spurlock
1,671 PointsDeclare msg with "const msg =" or "let msg =". That what I think is missing.

Wilbert Brinson
2,037 PointsFinally, convert the string stored in role to uppercase letters. The final msg string should look similar to this: "Carlos Salgado: DEVELOPER".

Thomas Spurlock
1,671 Pointslet firstName = ("Wil"); let lastName = ("Brein"); let role = ('developer'); let shout = role.toUpperCase(); let msg = firstName + " " + lastName + ": " + shout;
console.log(msg);

Thomas Spurlock
1,671 PointsEach "let" is the start of a new line