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 trialrovelle trinidad
390 PointsCreate a variable named message that combines both the myName and myAge variables to create a string like "Mary is 41"
-
var myName = 'your name'
var myAge = 27
var message = 'my Name is', + 'your Name' + 'and I am' + 'your age' + '.';
1 Answer
Steven Parker
231,236 PointsYou're getting close, but when you want a variable's value, you need to use the exact name of the variable and not put quotes around it. So put myName
instead of 'your Name'
and myAge
instead of 'your age'
.
Also, there's a stray comma on that line you can remove.