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.