fix(curriculum): Step 103 Pyramid Generator Text (#55162)

Co-authored-by: Sem Bauke <semboot699@gmail.com>
Co-authored-by: Kolade Chris <65571316+Ksound22@users.noreply.github.com>
This commit is contained in:
Michael Dillinger
2024-06-13 01:40:20 -05:00
committed by GitHub
parent 589a134f56
commit b8810f339e

View File

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