diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json
index c49dd082d8..601ae4cc6f 100644
--- a/challenges/object-oriented-and-functional-programming.json
+++ b/challenges/object-oriented-and-functional-programming.json
@@ -180,7 +180,8 @@
" return(val+1);
",
"});
",
"",
- "The map method is one of the easiest ways to iterate through an array or object there is. Let's use it now."
+ "The map method is one of the easiest ways to iterate through an array or object there is. Let's use it now.",
+ "Use the map function to add 3 to every value in the variable `array`"
],
"tests":[
"assert.deepEqual(array, [4,5,6,7,8], 'You should have added three to each value in the array');",