diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.english.md index b2ce9159a9..cf54d0d500 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.english.md @@ -40,7 +40,7 @@ Note that we do not use quotes around the variable name when using it t ## Instructions
-Use the playerNumber variable to look up player 16 in testObj using bracket notation. Then assign that name to the player variable. +Set the playerNumber variable to 16. Then, use the variable to look up the player's name and assign it to player.
## Tests