diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json
index 6a6a1599e3..85c5cdc94b 100644
--- a/seed/challenges/object-oriented-and-functional-programming.json
+++ b/seed/challenges/object-oriented-and-functional-programming.json
@@ -410,7 +410,7 @@
"title":"Join Strings with .join",
"description":[
"We can use the join
method to join each element of an array into a string separated by whatever delimiter you provide as an argument.",
- "The following is an example of using join
to join all of the elements of an array into a string with all the elements seperated by word `Na`:",
+ "The following is an example of using join
to join all of the elements of an array into a string with all the elements separated by word `Na`:",
"var joinMe = [\"Na \", \"Na \", \"Na \", \"Na \", \"Batman!\"];
",
"var joinedString = joinMe.join(\"Na \");
",
"console.log(joinedString);
",