diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-pass-an-object-as-a-functions-parameters.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-pass-an-object-as-a-functions-parameters.english.md index 9dcbb473f6..e2b0187b02 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-pass-an-object-as-a-functions-parameters.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-pass-an-object-as-a-functions-parameters.english.md @@ -26,8 +26,7 @@ const profileUpdate = ({ name, age, nationality, location }) => { } ``` -This removes some extra lines and makes our code look neat. -This has the added benefit of not having to manipulate an entire object in a function — only the fields that are needed are copied inside the function. +When profileData is passed to the above function, the values are destructured from the function parameter for use within the function. ## Instructions