diff --git a/challenges/02-javascript-algorithms-and-data-structures/es6.json b/challenges/02-javascript-algorithms-and-data-structures/es6.json index a845dcf468..aadf1fdc76 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/es6.json +++ b/challenges/02-javascript-algorithms-and-data-structures/es6.json @@ -437,7 +437,7 @@ "title": "Use Destructuring Assignment to Assign Variables from Arrays", "description": [ "ES6 makes destructuring arrays as easy as destructuring objects.", - "One key difference between the spread operator and array destructuring is that the spread operator unpacks all contents of an array into a comma-separated list. Consequently, you cannot pick and choose which elements or you want to assign to variables.", + "One key difference between the spread operator and array destructuring is that the spread operator unpacks all contents of an array into a comma-separated list. Consequently, you cannot pick or choose which elements you want to assign to variables.", "Destructuring an array lets us do exactly that:", "
const [a, b] = [1, 2, 3, 4, 5, 6];", "The variable
console.log(a, b); // 1, 2
a
is assigned the first value of the array, and b
is assigned the second value of the array.",