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 Numbers Working with Numbers Storing Numbers in Variables

jordan higgins
jordan higgins
1,997 Points

i cant seem to find the answer for this challenge

script.js
let myAge = "myage"
const myNum = 29;

1 Answer

Steven Parker
Steven Parker
229,787 Points

The instructions for task 1 say: "Create a variable named age and assign it your age."

The top line seems to be unrelated to the challenge and can be removed.

The 2nd line is close, but instead of "age", it creates a variable name "MyAge". Change the name to match the instructions and you can move on to task 2.