diff --git a/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md b/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md index 73f2e36b3f4..1990e1f617e 100644 --- a/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md +++ b/curriculum/challenges/english/blocks/quiz-javascript-functions/66edcc779993c0da6906dbb9.md @@ -346,15 +346,13 @@ When the function body consists of a single expression. #### --text-- -What will be the result for the following code? +What will the following function return? ```js function exampleFunction() { return "Hello"; return "World!"; }; - -exampleFunction(); ``` #### --distractors--