From 704863cd3e5b5fc20bc4718e6b5e5be1b775ba95 Mon Sep 17 00:00:00 2001 From: subro15 <91668861+Macky151203@users.noreply.github.com> Date: Tue, 30 Jan 2024 08:09:01 +0530 Subject: [PATCH] fix(curriculum): clarify syntax in directions for RPG game step 65 (#53431) --- .../62a8b9770050d217d2247801.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8b9770050d217d2247801.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8b9770050d217d2247801.md index eef08f729f8..04ffdd0132b 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8b9770050d217d2247801.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8b9770050d217d2247801.md @@ -7,7 +7,7 @@ dashedName: step-64 # --description-- -`location["button text"]` is an array with three elements. Change the `button1.innerText` assignment to be the first element of that array instead. +`location["button text"]` is an array with three elements. Change the `button1.innerText` assignment to be `location["button text"][0]` which represents the first element of the array. # --hints--