a should be defined and evaluated to have the value of 6");'
- text: ''
testString: 'assert(typeof b === "number" && b === 15, "b should be defined and evaluated to have the value of 15");'
- text: ''
testString: 'assert(!/undefined/.test(c) && c === "I am a String!", "c should not contain undefined and should have a value of "I am a String!"");'
- text: ''
testString: 'assert(/a = a \+ 1;/.test(code) && /b = b \+ 5;/.test(code) && /c = c \+ " String!";/.test(code), "Do not change code below the line");'
```