diff --git a/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md b/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md index 75f3b63d757..b5d9de6da35 100644 --- a/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md +++ b/curriculum/challenges/english/blocks/review-javascript-functions/6723c5b8601a40a100bb59c9.md @@ -43,7 +43,7 @@ console.log(calculateTotal(100)); // Output: 105 ::: -- Function Expressions are functions that you assign to variables. By doing this, you can use the function in any part of your code where the variable is accessible. +- Anonymous functions are functions without a name that can be assigned to variables. By assigning them to variables, you can reuse them anywhere the variable is accessible. :::interactive_editor