diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json
index 0e2c50c358..178ab1016d 100644
--- a/seed/challenges/object-oriented-and-functional-programming.json
+++ b/seed/challenges/object-oriented-and-functional-programming.json
@@ -169,7 +169,7 @@
"Then call your new constructor
with three number arguments
and assign it to myCar
to see it in action."
],
"tests":[
- "assert((function(){var testCar = new Car(3,1,2); return testCar.wheels === 3 && testCar.seats === 1 && testCar.engines === 2;})(), 'message: Calling new Car(3,1,2)
should produce and object with a wheels
property of 3
, a seats
property of 1
, and an engines
property of 2
.');",
+ "assert((function(){var testCar = new Car(3,1,2); return testCar.wheels === 3 && testCar.seats === 1 && testCar.engines === 2;})(), 'message: Calling new Car(3,1,2)
should produce an object with a wheels
property of 3
, a seats
property of 1
, and an engines
property of 2
.');",
"assert(typeof myCar.wheels === 'number' && typeof myCar.seats === 'number' && typeof myCar.engines === 'number', 'message: myCar
should have number values for the wheels
, seats
, and engines
properties.');"
],
"challengeSeed":[