From 46b300120fcd8bf237b6c60570b70bbe303772ac Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Wed, 25 Feb 2026 21:39:40 +1300 Subject: [PATCH] fix(curriculum): clarify constant wording in workshop (#66039) --- .../workshop-string-formatter/68e4276483b0c71658aab1d3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-string-formatter/68e4276483b0c71658aab1d3.md b/curriculum/challenges/english/blocks/workshop-string-formatter/68e4276483b0c71658aab1d3.md index 4304b099340..e6d6b523bc8 100644 --- a/curriculum/challenges/english/blocks/workshop-string-formatter/68e4276483b0c71658aab1d3.md +++ b/curriculum/challenges/english/blocks/workshop-string-formatter/68e4276483b0c71658aab1d3.md @@ -16,7 +16,7 @@ const str = "abcd"; str.slice(0, 3); // "abc" ``` -Change the value of the `camelCasedVersion` from an empty string to the result of using the `slice()` method on the `lowercaseWord` variable. Pass in the number `0` and `5` which represent the start and end indices for the `slice()` method. +You should change the existing `camelCasedVersion` assignment by replacing the empty string with `lowercaseWord.slice(0, 5)`. Now you should see the word `"camel"` in the console.