diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-nested-objects.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-nested-objects.english.md index a3f5dc79c4..7fdc3932df 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-nested-objects.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-nested-objects.english.md @@ -25,7 +25,7 @@ Here's how to extract the values into variables with the same name as they have const { johnDoe: { age, email }} = user; ``` -And here's how you can assign new variable names when destructuring a nested object like this: +And here's how you can assign new variable names when destructuring a nested object: ```js const { johnDoe: { age: userAge, email: userEmail }} = user;