From e1c66ff1f7fa7144d493d174fc03f12fceabc940 Mon Sep 17 00:00:00 2001 From: Zakeriya Mohamed <129135035+zakmoCA@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:04:41 +1000 Subject: [PATCH] fix(curriculum): add backticks to numbers in lesson description (#53026) --- .../62aa26cca3cd3d46c431e73b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa26cca3cd3d46c431e73b.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa26cca3cd3d46c431e73b.md index 68c87e6a8ee..1fc679623bd 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa26cca3cd3d46c431e73b.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62aa26cca3cd3d46c431e73b.md @@ -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--