diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json
index 178ab1016d..20dc89a4a9 100644
--- a/seed/challenges/object-oriented-and-functional-programming.json
+++ b/seed/challenges/object-oriented-and-functional-programming.json
@@ -115,7 +115,7 @@
"}
",
"Note that it is important to use the new
keyword when calling a constructor. This is how javascript knows to create a new object and that all the references to this
inside the constructor should be referring to this new object.",
"Now, once the myCar
instance
is created it can be used like any other object and can have its properties accessed and modified the same way you would usually. For example:",
- "var myCar.turboType = \"twin\";
",
+ "myCar.turboType = \"twin\";
",
"Our myCar
variable now has a property turboType
with a value of \"twin\"
.",
"In the editor, use the Car
constructor
to create a new instance
and assign it to myCar
.",
"Then give myCar
a nickname
property with a string value."