diff --git a/exercises/04.3-Add_items_to_array/README.md b/exercises/04.3-Add_items_to_array/README.md index bda2cdc8..f47b2c31 100644 --- a/exercises/04.3-Add_items_to_array/README.md +++ b/exercises/04.3-Add_items_to_array/README.md @@ -10,6 +10,6 @@ tutorial: https://www.youtube.com/watch?v=LMOIly1JTes ## 💡 Hints: -+ You can use Math.random() to generate random numbers, and then use Math.floor() to round them down to the nearest integer. ++ You can use the Math.random() function to generate random numbers, and then use the Math.floor() function to round them down to the nearest integer. + You have to use the `.push()` function to add the new random numbers to the array.