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 trialKatherine Moreno
1,566 PointsMy code works, but it's a lot shorter and different than the suggested solution. Did I do something wrong?
var userInput = prompt("Give me a number between 1 and 100.");
var userInput2 = prompt("Give me a smaller number.");
var userMax = parseInt(userInput);
var userMin = parseInt(userInput2);
document.write(Math.floor(Math.random()*(userMax - userMin) + userMin));
1 Answer
Simon Coates
28,694 Pointsyeah, i think the +1 is important, if the difference between the two numbers is only 1. floor will will always be 0. Math.random is explained as "Return a random number between 0 (inclusive) and 1 (exclusive)". If it were inclusive, your code would be okay, i think.