From b9f47f8c9dad992f2d8d74e1753270393c2592db Mon Sep 17 00:00:00 2001 From: SamareshSingh <97642706+ssam18@users.noreply.github.com> Date: Mon, 17 Nov 2025 18:53:49 -0600 Subject: [PATCH] fix(curriculum): remove backticks around console (#63927) --- .../blocks/workshop-greeting-bot/66adcf383276814776aba3ca.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-greeting-bot/66adcf383276814776aba3ca.md b/curriculum/challenges/english/blocks/workshop-greeting-bot/66adcf383276814776aba3ca.md index 7d6d58f525e..2c12911d167 100644 --- a/curriculum/challenges/english/blocks/workshop-greeting-bot/66adcf383276814776aba3ca.md +++ b/curriculum/challenges/english/blocks/workshop-greeting-bot/66adcf383276814776aba3ca.md @@ -13,7 +13,7 @@ Use string concatenation to join the string `"My favorite subject is "` with the Assign the result to the `favoriteSubjectSentence` variable. -Then, log the value of `favoriteSubjectSentence` to the `console`. +Then, log the value of `favoriteSubjectSentence` to the console. # --hints-- @@ -41,7 +41,7 @@ You should have a `console` statement in your code. assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 8); ``` -You should log the value of `favoriteSubjectSentence` to the `console`. +You should log the value of `favoriteSubjectSentence` to the console. ```js assert.match(__helpers.removeJSComments(code), /console\.log\s*\(\s*favoriteSubjectSentence\s*\)/);