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>
This commit is contained in:
bhagerty
2020-09-02 12:41:59 -05:00
committed by GitHub
parent e48664af2a
commit db15a44160

View File

@ -40,7 +40,7 @@ Note that we do <em>not</em> use quotes around the variable name when using it t
## Instructions
<section id='instructions'>
Use the <code>playerNumber</code> variable to look up player <code>16</code> in <code>testObj</code> using bracket notation. Then assign that name to the <code>player</code> variable.
Set the <code>playerNumber</code> variable to <code>16</code>. Then, use the variable to look up the player's name and assign it to <code>player</code>.
</section>
## Tests