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.

Kimberly Dolcin
4,369 PointsMy code is not showing up on the screen!
alert("Lets do some math!"); var num1 = prompt("Pick a Number"); num1=parseFloat(num1); var num2 = prompt("Pick a Number"); num2 = parseFloat(num2); var message = "</h1>Math with the numbers " + num1 + " and "+ num2 + "</h1>" message+= num1 + "+" + num2 + "=" + (num1+num2); doucment.write(message);
1 Answer

Adomas Domeika
6,151 PointsSpelling mistake.
instead of document you spelled doUCment
Kimberly Dolcin
4,369 PointsKimberly Dolcin
4,369 Pointsomg! THANK YOU!
Adomas Domeika
6,151 PointsAdomas Domeika
6,151 PointsAlso, even though ES6 doesn't require you to use semicolons, but you forgot it in this line:
var message = "</h1>Math with the numbers " + num1 + " and "+ num2 + "</h1>"
;
Kimberly Dolcin
4,369 PointsKimberly Dolcin
4,369 Pointsthank you!