diff --git a/src/utils/randomNumber.js b/src/utils/randomNumber.js index 856ed38..51f434d 100644 --- a/src/utils/randomNumber.js +++ b/src/utils/randomNumber.js @@ -1,4 +1,3 @@ export function randomNumber() { - const num = Math.floor(Math.random() * 80); - return num; + return Math.floor(Math.random() * 80); } \ No newline at end of file