diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/mutate-an-array-declared-with-const.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/mutate-an-array-declared-with-const.md index 89d30408a8..010b765df6 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/mutate-an-array-declared-with-const.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/mutate-an-array-declared-with-const.md @@ -24,7 +24,7 @@ As you can see, you can mutate the object [5, 6, 7] itself and the ## Instructions
-An array is declared as const s = [5, 7, 2]. Change the array to [2, 5, 7] using various element assignment. +An array is declared as const s = [5, 7, 2]. Change the array to [2, 5, 7] using various element assignments.
## Tests