diff --git a/index.js b/index.js index 4c2a94e..304da8a 100644 --- a/index.js +++ b/index.js @@ -18,6 +18,7 @@ const maxNumberOfAttempts = 5; // <- 32 // > getRandomNumber(1, 50) // <- 11 +//Commment function getRandomNumber(min, max) { return Math.floor(Math.random() * (max - min)) + min; }