diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json
index 6a6a1599e34..85c5cdc94b2 100644
--- a/challenges/object-oriented-and-functional-programming.json
+++ b/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);",