fix(curriculum): clarify syntax in directions for RPG game step 65 (#53431)

This commit is contained in:
subro15
2024-01-30 08:09:01 +05:30
committed by GitHub
parent b515a87dcb
commit 704863cd3e

View File

@@ -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--