result is set to the value returned from calling the function getNine.
result so it is set to the number that the function getNine returns.
testString: assert(result == 9);
- text: Your code should call the getNine function.
testString: assert(code.match(/getNine\(\)/g).length == 2);
```