From 2d5a1f1964dcff46ef1a2a6cd29939dd6b1d222b Mon Sep 17 00:00:00 2001 From: Domendra Singh Komra <142248999+azadDsync@users.noreply.github.com> Date: Mon, 22 Apr 2024 10:10:02 +0530 Subject: [PATCH] fix(curriculum): update description for step 16 of pyramid project (#54456) Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com> --- .../660f039ff313dbb696b007ca.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f039ff313dbb696b007ca.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f039ff313dbb696b007ca.md index 5e7af7acb02..bc67f2fd2f2 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f039ff313dbb696b007ca.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f039ff313dbb696b007ca.md @@ -13,7 +13,7 @@ When an array holds values, or elements, 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--