diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json index 68eb3f7c38..4dac5b7ca9 100644 --- a/seed/challenges/object-oriented-and-functional-programming.json +++ b/seed/challenges/object-oriented-and-functional-programming.json @@ -263,7 +263,7 @@ "", "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.", "In our example the callback only uses the value of the array element (the val argument) but your callback can also include arguments for the index and array being acted on.", - "Use the map function to add 3 to every value in the variable array." + "Use the map function to add 3 to every value in the variable oldArray." ], "tests":[ "assert.deepEqual(newArray, [4,5,6,7,8], 'message: You should add three to each value in the array.');",