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) Creating Reusable Code with Functions Random Number Challenge

How is my code

is it working like you expect it to work? I see you misspelled this part "getRamdon " , so thats why I ask if it works?

I saw that I misspelled "getRandom" It did work, the alert dialog box did appear with two random numbers, much thanks!

1 Answer

I have a question: What's the idea of having the same code in different functions and just different parameter? You saw that you have a mistake "getRamdon" and after the second function you call:

alert(getRandom(3));

OR you are just calling the first function a second time?! I don't get it. Isn't it better to do it:

function getRandom(num){
    return Math.floor(Math.random() * num ) + 1;
}
var upper = getRandom(100);
var lower = getRandom(3);
alert(upper);
alert(lower);

If you don't need the variables you can just:

alert(getRandom(100));
alert(getRandom(3));

Hope I helped :)