diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 15b2df6a434..68646b02e4a 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -1386,7 +1386,7 @@
"Now we can detect a win let's get the slot machine to look like it works",
"We're going to use the jQuery selector $('.slot') to select all of the slots",
"Once they are all selected we can use bracket notation to access each individual one like this",
- "$($('.slot')[0])",
+ "$($('.slot')[0]).html('')",
"This will grab the the first slot so that we can add the numbers we generate to them",
"Use the above selector to display each number in the corresponding slot"
],