From 47bc85ef86b403c75485b7e4495b714d2333d6b5 Mon Sep 17 00:00:00 2001 From: George Mihov <53583283+gmihov001@users.noreply.github.com> Date: Wed, 1 Sep 2021 10:00:48 -0400 Subject: [PATCH] Ex 05.3 - updated instructions Removed instruction to use a loop, the exercise explicitly says a loop is not needed. --- exercises/05.3-Add-items-to-array/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/05.3-Add-items-to-array/README.md b/exercises/05.3-Add-items-to-array/README.md index 7ebe9cf8..521d5471 100644 --- a/exercises/05.3-Add-items-to-array/README.md +++ b/exercises/05.3-Add-items-to-array/README.md @@ -10,6 +10,6 @@ tutorial: https://www.youtube.com/watch?v=no9mCu-tvaM ## 💡 Hint: -- You can use the `Math.random()` and `Math.floor()` functions to get random numbers, you should do that inside the loop. +- You can use the `Math.random()` and `Math.floor()` functions to get random numbers. - You have to use the `.push(item)` function to add the new random number to the array.