diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7bfabe119461eb13ccbd6.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7bfabe119461eb13ccbd6.md index 6040d1028d3..d039689e8d7 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7bfabe119461eb13ccbd6.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a7bfabe119461eb13ccbd6.md @@ -7,7 +7,7 @@ dashedName: step-41 # --description-- -Now you need to modify your display text. Change the `innerText` property of the `text` to be `"You enter the store."`. +Now you need to modify your display text. Change the `innerText` property of the `text` variable to be `"You enter the store."`. # --hints-- @@ -153,6 +153,7 @@ function goStore() { button1.onclick = buyHealth; button2.onclick = buyWeapon; button3.onclick = goTown; + } --fcc-editable-region--