From 73f74045ca55e948956eeff1dafdbd6435253b01 Mon Sep 17 00:00:00 2001 From: Fernando Belmonte Archetti <110430578+farchettiensis@users.noreply.github.com> Date: Tue, 18 Nov 2025 04:56:59 -0300 Subject: [PATCH] fix(curriculum): adjust sentence in steps 2-14 in workshop-mathbot (#63912) --- .../blocks/workshop-mathbot/66ea7e7399244c6d4b6052a1.md | 6 +++--- .../blocks/workshop-mathbot/66ea7fc048a6e26e33c598fe.md | 2 +- .../blocks/workshop-mathbot/66ea8239b9eeb76f12299030.md | 2 +- .../blocks/workshop-mathbot/66ea845f54195c7020cc521b.md | 2 +- .../blocks/workshop-mathbot/66ea89c25e1bd871688eba6a.md | 2 +- .../blocks/workshop-mathbot/66eb3ec3b07dfe8f898646c0.md | 2 +- .../blocks/workshop-mathbot/66eb480d996af5918d7c9c86.md | 2 +- .../blocks/workshop-mathbot/66eb488c0129e192542f0865.md | 2 +- .../blocks/workshop-mathbot/66eb499511810e932ca7eecc.md | 2 +- .../blocks/workshop-mathbot/66ecdcf7c8d9a6f49094ffde.md | 2 +- .../blocks/workshop-mathbot/66ece0b518f5dcf5930612ab.md | 2 +- .../blocks/workshop-mathbot/66ece147323c91f654bf8dd9.md | 2 +- .../blocks/workshop-mathbot/66ece75c0b840df77c7e20f0.md | 4 ++-- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ea7e7399244c6d4b6052a1.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ea7e7399244c6d4b6052a1.md index bd69b1cc9f0..57065ae8304 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ea7e7399244c6d4b6052a1.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ea7e7399244c6d4b6052a1.md @@ -9,14 +9,14 @@ dashedName: step-2 The next part of the workshop will review how the `Math.random()` method works. -Start by adding another `console.log()` that logs the string `"The Math.random() method returns a pseudo random number between 0 and less than 1."` to the console. +Start by adding another `console.log()` that logs the string `"The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."` to the console. # --hints-- -You should have a `console.log()` that logs the string `"The Math.random() method returns a pseudo random number between 0 and less than 1."`. +You should have a `console.log()` that logs the string `"The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."`. ```js -assert.match(code, /console\.log\((`|'|")\s*The\s+Math\.random\(\)\s+method\s+returns\s+a\s+pseudo\s+random\s+number\s+between\s+0\s+and\s+less\s+than\s+1\.\1\)/); +assert.match(code, /console\.log\((`|'|")\s*The\s+Math\.random\(\)\s+method\s+returns\s+a\s+pseudo\s+random\s+number\s+greater\s+than\s+or\s+equal\s+to\s+0\s+and\s+less\s+than\s+1\.\1\)/); ``` # --seed-- diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ea7fc048a6e26e33c598fe.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ea7fc048a6e26e33c598fe.md index c2e6e5d9b83..615f3c52e5b 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ea7fc048a6e26e33c598fe.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ea7fc048a6e26e33c598fe.md @@ -54,7 +54,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); --fcc-editable-region-- --fcc-editable-region-- diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ea8239b9eeb76f12299030.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ea8239b9eeb76f12299030.md index 43e3ffe0c43..7372c182194 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ea8239b9eeb76f12299030.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ea8239b9eeb76f12299030.md @@ -69,7 +69,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ea845f54195c7020cc521b.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ea845f54195c7020cc521b.md index 73499467345..cc9b190aa66 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ea845f54195c7020cc521b.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ea845f54195c7020cc521b.md @@ -61,7 +61,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ea89c25e1bd871688eba6a.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ea89c25e1bd871688eba6a.md index 309cb1fd5a9..f7976f72b2d 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ea89c25e1bd871688eba6a.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ea89c25e1bd871688eba6a.md @@ -31,7 +31,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66eb3ec3b07dfe8f898646c0.md b/curriculum/challenges/english/blocks/workshop-mathbot/66eb3ec3b07dfe8f898646c0.md index 735d13d797d..eac8c03a945 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66eb3ec3b07dfe8f898646c0.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66eb3ec3b07dfe8f898646c0.md @@ -60,7 +60,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66eb480d996af5918d7c9c86.md b/curriculum/challenges/english/blocks/workshop-mathbot/66eb480d996af5918d7c9c86.md index c538d34f3eb..46f288425e4 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66eb480d996af5918d7c9c86.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66eb480d996af5918d7c9c86.md @@ -29,7 +29,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66eb488c0129e192542f0865.md b/curriculum/challenges/english/blocks/workshop-mathbot/66eb488c0129e192542f0865.md index 528e220455d..11e8d95d2d2 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66eb488c0129e192542f0865.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66eb488c0129e192542f0865.md @@ -62,7 +62,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66eb499511810e932ca7eecc.md b/curriculum/challenges/english/blocks/workshop-mathbot/66eb499511810e932ca7eecc.md index 494cba51b8f..039e1dbffae 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66eb499511810e932ca7eecc.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66eb499511810e932ca7eecc.md @@ -29,7 +29,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ecdcf7c8d9a6f49094ffde.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ecdcf7c8d9a6f49094ffde.md index 2f9f9cdecfa..65045cf5090 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ecdcf7c8d9a6f49094ffde.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ecdcf7c8d9a6f49094ffde.md @@ -82,7 +82,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ece0b518f5dcf5930612ab.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ece0b518f5dcf5930612ab.md index 522a30777ff..0b26f13bf19 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ece0b518f5dcf5930612ab.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ece0b518f5dcf5930612ab.md @@ -29,7 +29,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ece147323c91f654bf8dd9.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ece147323c91f654bf8dd9.md index 0dcd628a38f..2eb83e293ee 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ece147323c91f654bf8dd9.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ece147323c91f654bf8dd9.md @@ -78,7 +78,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); diff --git a/curriculum/challenges/english/blocks/workshop-mathbot/66ece75c0b840df77c7e20f0.md b/curriculum/challenges/english/blocks/workshop-mathbot/66ece75c0b840df77c7e20f0.md index cd129af78e1..e64ae792b4c 100644 --- a/curriculum/challenges/english/blocks/workshop-mathbot/66ece75c0b840df77c7e20f0.md +++ b/curriculum/challenges/english/blocks/workshop-mathbot/66ece75c0b840df77c7e20f0.md @@ -29,7 +29,7 @@ const greeting = `Hi there! My name is ${botName} and I am here to teach you abo console.log(greeting); -console.log("The Math.random() method returns a pseudo random number between 0 and less than 1."); +console.log("The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1."); const randomNum = Math.random(); console.log(randomNum); @@ -82,7 +82,7 @@ const greeting = `Hi there! My name is ${botName} and I want to teach you about console.log(greeting); console.log( - "The Math.random() method returns a pseudo random number between 0 and less than 1." + "The Math.random() method returns a pseudo random number greater than or equal to 0 and less than 1." ); const randomNum = Math.random();