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"

Thi

scripts.js
var myName = "tunji"
let myAge=19
var myName = "tunji"
var myAge = 27
var message = 'my ', + 'myName' + 'tunji is 19' + 'my age '.'

1 Answer

Steven Parker
Steven Parker
229,732 Points

You're close, but you have a few issues:

  • only declare each variable once in the code
  • variable names should not be enclosed in quotes
  • be sure to place the correct operator between each literal string and variable
  • be sure the quotes around each literal string are balanced and matching