diff --git a/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json b/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json
index 8fd61d9eb8a..11a76f7d62e 100644
--- a/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json
+++ b/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json
@@ -567,7 +567,7 @@
"description": [
"You can use the split method to split a string into an array.",
"split uses the argument you pass in as a delimiter to determine which points the string should be split at.",
- "Here is an example of split being used to split an array at every s character:",
+ "Here is an example of split being used to split a string at every s character:",
"var array = string.split('s');",
"Use split to create an array of words from string and assign it to array."
],