if statement in the editor");'
- text: ''
testString: 'assert(/else/g.test(code), "You should use an else statement");'
- text: ''
testString: 'assert(testElse(4) === "5 or Smaller", "testElse(4) should return "5 or Smaller"");'
- text: ''
testString: 'assert(testElse(5) === "5 or Smaller", "testElse(5) should return "5 or Smaller"");'
- text: ''
testString: 'assert(testElse(6) === "Bigger than 5", "testElse(6) should return "Bigger than 5"");'
- text: ''
testString: 'assert(testElse(10) === "Bigger than 5", "testElse(10) should return "Bigger than 5"");'
- text: ''
testString: 'assert(/var result = "";/.test(code) && /return result;/.test(code), "Do not change the code above or below the lines.");'
```