diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 24318e8477..3416cd2240 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -958,12 +958,12 @@ "We can use if statements in JavaScript to only execute code if a certain condition is met.", "if statements require some sort of boolean condition evaluate.", "Example:", - " if (1 == 2) {", + " if (1 == 2) {", "  return(true);", "}", "else {", "  return(false);", - "}", + "}", "Let's use if and else statements to make a coin-flip game.", "Create an if-else statement to return heads if the flip var is zero and to return tails if it's not." ],