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.

Ivan Kozhunkov
Courses Plus Student 8,480 PointsHave a problem in my JavaScript code
var topNumber = prompt ("Please, enter a first number ");
var useTopNumber = parseInt (topNumber);
var bottomNumber = prompt ("Please, enter a second number ");
var useBottomNumber = parseInt (bottomNumber);
var randomNumber = Math.floor(Math.random() * (useTopNumber - useBottomNumber + 1)) + useBottomNumber;
var message = "<p>Our final number " + randomNumber + " will be situate between " + useTopNumber + " and" + useBottomNumber ".</p>";
document.write(message);
In chrome console : var message - unexpected string
1 Answer

Nicholas Bentzen
15,074 PointsYou are missing a + sign inbetween useBottomNumber and ".</p>";

Ivan Kozhunkov
Courses Plus Student 8,480 PointsThanks a lot! I didn't see that I missed it! :)
Tamas Molnar
1,986 PointsTamas Molnar
1,986 PointsAt the line starting with "var message" a plus sign is missing in front of ".</p>"