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 Quickstart Data Types and Variables Creating Variables

Create a variable named message that combines both the myName and myAge variables to create a string like "Mary is 41"

-

scripts.js
var myName = 'your name'
var myAge = 27
var message = 'my Name is', + 'your Name' + 'and I am' + 'your age' + '.';

1 Answer

Steven Parker
Steven Parker
229,744 Points

You'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.