From eda319f30a917670a55c30019453aa441ebcb022 Mon Sep 17 00:00:00 2001 From: mannsn Date: Tue, 24 Feb 2026 16:08:07 -0500 Subject: [PATCH] comment --- index.js | 1 + 1 file changed, 1 insertion(+) 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; }