Merge pull request #1930 from AryanJ-NYC/AryanJ-NYC-1926

Fixed #1926
pull/1961/head
benmcmahon100 2015-08-17 21:45:09 +01:00
commit 9c5d81f96b
1 changed files with 1 additions and 1 deletions

View File

@ -924,7 +924,7 @@
"title": "Generate Random Whole Numbers within a Range",
"difficulty":"9.9829",
"description":[
"We can use a certain mathematical expression to get a random number between between two numbers.",
"We can use a certain mathematical expression to get a random number between two numbers.",
"<code>Math.floor(Math.random() * (max - min + 1)) + min</code>",
"By using this we can control the output of a random number."
],