fix(curriculum): add backticks to numbers in lesson description (#53026)

This commit is contained in:
Zakeriya Mohamed
2024-01-08 18:04:41 +10:00
committed by GitHub
parent 2a5a834256
commit e1c66ff1f7

View File

@@ -7,7 +7,7 @@ dashedName: step-164
# --description--
Inside your `while` loop, push a random number between 0 and 10 to the end of the `numbers` array. You can create this random number with `Math.floor(Math.random() * 11)`.
Inside your `while` loop, push a random number between `0` and `10` to the end of the `numbers` array. You can create this random number with `Math.floor(Math.random() * 11)`.
# --hints--