función myFunction () {
regresa "¡Tú rock!";
}
deja varOne = myFunction; // establecer para igualar una función
vamos varTwo = myFunction (); // establecer para igualar la cadena "You rock!"
result variable se establezca en el valor devuelto al llamar a la función getNine . result variable para que se establezca en el número que devuelve la función getNine .
testString: 'assert(result == 9, "Your code should fix the variable result so it is set to the number that the function getNine returns.");'
- text: Su código debe llamar a la función getNine .
testString: 'assert(code.match(/getNine\(\)/g).length == 2, "Your code should call the getNine function.");'
```