diff --git a/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json b/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json
index 6a9a67e22..fb4899651 100644
--- a/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json
@@ -1090,7 +1090,7 @@
"The reduce
method allows for more general forms of array processing, and it's possible to show that both filter
and map
can be derived as a special application of reduce
.",
"However, before we get there, let's practice using reduce
first.",
"
watchList
holds an array of objects with information on several movies. Use reduce
to find the average IMDB rating of the movies directed by Christopher Nolan. Recall from prior challenges how to filter
data and map
over it to pull what you need. You may need to create other variables, but save the final average into the variable averageRating
. Note that the rating values are saved as strings in the object and need to be converted into numbers before they are used in any mathematical operations."
+ "The variable watchList
holds an array of objects with information on several movies. Use reduce
to find the average IMDB rating of the movies directed by Christopher Nolan. Recall from prior challenges how to filter
data and map
over it to pull what you need. You may need to create other variables, but save the final average into the variable averageRating
. Note that the rating values are saved as strings in the object and need to be converted into numbers before they are used in any mathematical operations."
],
"tests": [
{