diff --git a/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md b/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md index 49a05d6554a..f40f82f0a08 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md @@ -9,7 +9,7 @@ dashedName: step-3 It's time to count the consonants. Create a `getConsonantCount` function with a `sentence` parameter. -Inside the function, use a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called. A consonant is anything that is not the following characters: `"aeiou"`. +Inside the function, use a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called. A consonant is any letter that is not one of the following characters: `"aeiou"`. Your `getConsonantCount` function must return a number.