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 Basics (Retired) Working With Numbers The Random Challenge Solution

Ivan Kozhunkov
PLUS
Ivan Kozhunkov
Courses Plus Student 8,480 Points

Have 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

Tamas Molnar
Tamas Molnar
1,986 Points

At the line starting with "var message" a plus sign is missing in front of ".</p>"

1 Answer

Nicholas Bentzen
Nicholas Bentzen
15,074 Points

You are missing a + sign inbetween useBottomNumber and ".</p>";