diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json
index f00086db9c..9527328a4f 100644
--- a/seed/challenges/object-oriented-and-functional-programming.json
+++ b/seed/challenges/object-oriented-and-functional-programming.json
@@ -206,7 +206,7 @@
"title":"Condense arrays with .reduce",
"difficulty":0,
"description":[
- "Reduce can be useful for condensing an array or numbers into one value.",
+ "Reduce can be useful for condensing an array of numbers into one value.",
"var singleVal = array.reduce(function(previousVal, currentVal){
",
" return previousVal+currentVal;
",
"});
"