From b8810f339ec710a1fd104ca76e6045907c2e2d75 Mon Sep 17 00:00:00 2001 From: Michael Dillinger <97033783+mpdillingerOSU@users.noreply.github.com> Date: Thu, 13 Jun 2024 01:40:20 -0500 Subject: [PATCH] fix(curriculum): Step 103 Pyramid Generator Text (#55162) Co-authored-by: Sem Bauke Co-authored-by: Kolade Chris <65571316+Ksound22@users.noreply.github.com> --- .../660f4e74f7fd3f4a99ac2e50.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/660f4e74f7fd3f4a99ac2e50.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4e74f7fd3f4a99ac2e50.md index 06886e907e2..97b59e6040a 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4e74f7fd3f4a99ac2e50.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f4e74f7fd3f4a99ac2e50.md @@ -18,7 +18,7 @@ numbers.shift(); The `numbers` array would be `[2, 3]`. -Declare a `shifted` variable, assign it the result of calling `.shift()` on your `numbers` array, and print the variable. +Directly below your `numbers` array, declare a `shifted` variable and assign it the result of calling `.shift()` on the `numbers` array. On the next line, log the `shifted` variable to the console. # --hints--