From db15a44160d9690f826101065603e77ede82aa34 Mon Sep 17 00:00:00 2001 From: bhagerty Date: Wed, 2 Sep 2020 12:41:59 -0500 Subject: [PATCH] fix(learn): clarify instructions to remove confusion (#39479) * Clarify instructions to remove confusion * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables.english.md Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> --- .../accessing-object-properties-with-variables.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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