diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md index ae553b7872..2dd61e004c 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md @@ -21,7 +21,7 @@ const { name: userName, age: userAge } = user; // userName = 'John Doe', userAge = 34 ``` -You may read it as "get the field name and copy the value into userName" and so on. +You may read it as "get the value of user.name and copy it into userName" and so on. ## Instructions