From 10d3126383ad560eb148ae3df3705ad11110d7ea Mon Sep 17 00:00:00 2001
From: nick-w-nick <43578531+nick-w-nick@users.noreply.github.com>
Date: Tue, 13 Oct 2020 07:14:49 -0400
Subject: [PATCH] fix(learn): correct minor grammar mistake (#39915)
---
.../es6/mutate-an-array-declared-with-const.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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