total should be declared and initialized to 0");'
- text: ''
testString: 'assert(total === 20, "total should equal 20");'
- text: ''
testString: 'assert(code.match(/for\s*\(/g).length > 1 && code.match(/myArr\s*\[/), "You should use a for loop to iterate through myArr");'
- text: ''
testString: 'assert(!code.match(/total[\s\+\-]*=\s*(\d(?!\s*[;,])|[1-9])/g), "Do not set total to 20 directly");'
```