Skip to content

Commit 6f8248b

Browse files
authored
Update 07-arrays-exercises.js
Fix exercise description
1 parent 6986985 commit 6f8248b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/exercises/07-arrays-exercises.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ The following lines should help you see if your function works correctly.
439439

440440
process.stdout.write('\n*7·7.\n');
441441
/*
442-
*7·7. Create a function called 'bottom3' that takes an array (of at least 3 strings) and returns the last 3 strings that occur in reverse alphabetical order.
442+
*7·7. Create a function called 'bottom3' that takes an array (of at least 3 strings) and returns the last 3 strings that occur in alphabetical order.
443443
444444
The following lines should help you see if your function works correctly.
445445
*/
@@ -453,7 +453,7 @@ The following lines should help you see if your function works correctly.
453453

454454
process.stdout.write('\n*7·71.\n');
455455
/*
456-
*7·71. Create a function called 'bottomN' that takes a number (n) and an array (of at least n strings). It should return the last n strings that occur in reverse alphabetical order.
456+
*7·71. Create a function called 'bottomN' that takes a number (n) and an array (of at least n strings). It should return the last n strings that occur in alphabetical order.
457457
458458
The following lines should help you see if your function works correctly.
459459
*/

0 commit comments

Comments
 (0)