fix(curriculum): update description for step 16 of pyramid project (#54456)

Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
This commit is contained in:
Domendra Singh Komra
2024-04-22 10:10:02 +05:30
committed by GitHub
parent ec0639fda9
commit 2d5a1f1964

View File

@@ -13,7 +13,7 @@ When an array holds values, or <dfn>elements</dfn>, those values are separated b
let array = ["first", "second"];
```
Change your `rows` declaration to be an array with the strings `Naomi`, `Quincy,` and `CamperChan`. The order of values in an array is important, so follow that order. Remember that strings are case-sensitive.
Change your `rows` declaration to be an array with the strings `"Naomi"`, `"Quincy"`, and `"CamperChan"`. The order of values in an array is important, so follow that order. Remember that strings are case-sensitive.
# --hints--