diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json
index 586650ddec..493e50ced6 100644
--- a/challenges/basic-javascript.json
+++ b/challenges/basic-javascript.json
@@ -741,10 +741,10 @@
"After you've created a JavaScript object, you can update its properties at any time just like you would update any other variable.",
"For example, let's look at ourDog
:",
"var ourDog = {
",
- " \"name\": \"Camper\",
",
- " \"legs\": 4,
",
- " \"tails\": 1,
,",
- " \"friends\": [\"everything!\"]
",
+ " \"name\": \"Camper\",
",
+ " \"legs\": 4,
",
+ " \"tails\": 1,
,",
+ " \"friends\": [\"everything!\"]
",
"};
",
"Since he's a particularly happy dog, let's change his name to \"Happy Camper\". Here's how we update his object's name property:",
"myDog.name = \"Happy Camper\";
",
@@ -773,13 +773,6 @@
"",
"// Only change code below this line.",
"",
- "",
- "",
- "// Now delete the property tails",
- "",
- "",
- "// Only change code above this line.",
- "",
"(function(z){return z;})(myDog);"
],
"type": "waypoint",