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.