diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json
index 4570dd45ff..3be9cb4a20 100644
--- a/challenges/object-oriented-and-functional-programming.json
+++ b/challenges/object-oriented-and-functional-programming.json
@@ -189,8 +189,8 @@
"title":"Iterate over Arrays with .map",
"description":[
"The map
method is a convenient way to iterate through arrays. Here's an example usage:",
- "var timesFour = array.map(function(val){
",
- " return val*4;
",
+ "var timesFour = oldArray.map(function(val){
",
+ " return val * 4;
",
"});
",
"",
"The map
method will iterate through every element of the array, creating a new array with values that have been modified by the callback function, and return it.",