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 trialSean Flanagan
33,235 PointsI generated a number outside the range
Hi.
How did I end up with "30 is a number between 5 and 29"?
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
<title>JavaScript Basics</title>
</head>
<body>
<div class="container">
<h1>Random Number Generator</h1>
<script src="random.js"></script>
</div>
</body>
</html>
JavaScript:
var input1 = prompt("Please type a starting number");
var bottomNumber = parseInt(input1);
var input = prompt("Please type a number");
var topNumber = parseInt(input);
var randomNumber = Math.floor(Math.random() * (topNumber - bottomNumber + 1)) + 1 + bottomNumber;
var message = "<p>" + randomNumber + " is a number between " + bottomNumber + " and " + topNumber + ".</p>";
document.write(message);
Thanks.
Sean
1 Answer
Amy Rutherford
9,659 Pointsvar randomNumber = Math.floor(Math.random() * (topNumber - bottomNumber + 1)) + bottomNumber;
The second + 1 isn't needed.
Sean Flanagan
33,235 PointsSean Flanagan
33,235 PointsThanks again Amy!
Sean :-)