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 trialElfar Oliver
3,924 PointsMy solution for the Two Number challenge
https://w.trhou.se/ojpda7a098 It's almost exactly the same as the previous challenge. Just add a number and change the if a tiny bit. Comment out line 17 from the original and add const lowNumber, and change the alert on line 19
1 Answer
Steven Parker
231,248 PointsThis simplified formula assumes the low number will always be 1. To work with any range, the formula should be:
const randomNumber = Math.floor(Math.random() * (highNumber - lowNumber + 1)) + lowNumber;
jb30
44,806 Pointsjb30
44,806 PointsCurrently, the value for
randomNumber
in line 10 does not use the value oflowNumber
. When running the code, I got the alert15 is a random number between 800 and 1000