Skip to content

Commit

Permalink
fix(curriculum): Update code example for step 18 of pyramid project (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
nandita1 committed May 1, 2024
1 parent f684036 commit 3f35a95
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -14,6 +14,7 @@ For example, this code would assign the number `25` to the second element in the
```js
let array = [1, 2, 3];
array[1] = 25;
console.log(array); // prints [1, 25, 3]
```

Update the **third** element of your `rows` array to be the number `10`. Then print the `rows` array to your console.
Expand Down

0 comments on commit 3f35a95

Please sign in to comment.