added 0 to 58008

This commit is contained in:
Jack 2020-08-18 17:44:23 +01:00
parent ef243a96e1
commit 765a586329

View file

@ -294,7 +294,7 @@ function getNumbers() {
let randLen = Math.floor(Math.random() * 7) + 1;
let ret = "";
for (let i = 0; i < randLen; i++) {
randomNum = Math.floor(Math.random() * 9) + 1;
randomNum = Math.floor(Math.random() * 10);
ret += randomNum.toString();
}
return ret;