From 69e3c7fdb163ea74dae0deb7be8e18c72e090db9 Mon Sep 17 00:00:00 2001 From: "Sergio H. Gonzalez" Date: Thu, 15 Dec 2022 16:18:17 -0300 Subject: [PATCH] Modified output exercise sevenRandomNumbers() Removed unnecessary parenthesis. --- 07_Day_Functions/07_day_functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07_Day_Functions/07_day_functions.md b/07_Day_Functions/07_day_functions.md index 17d9087..695a51e 100644 --- a/07_Day_Functions/07_day_functions.md +++ b/07_Day_Functions/07_day_functions.md @@ -698,11 +698,11 @@ It Will be covered in other section. ```js sevenRandomNumbers() - [(1, 4, 5, 7, 9, 8, 0)] + [1, 4, 5, 7, 9, 8, 0] ``` 1. Write a function called reverseCountries, it takes countries array and first it copy the array and returns the reverse of the original array 🎉 CONGRATULATIONS ! 🎉 -[<< Day 6](../06_Day_Loops/06_day_loops.md) | [Day 8 >>](../08_Day_Objects/08_day_objects.md) \ No newline at end of file +[<< Day 6](../06_Day_Loops/06_day_loops.md) | [Day 8 >>](../08_Day_Objects/08_day_objects.md)