• All Upper I - code returns "NoExecFunction"

Question related to mission All Upper I

 

My code passes the basic tests, then returns "NoExecFunction" when I run check solution. Not sure why this is happening.

Here's my code:

const isAllUpper = (text) =>{ if (! text) { return true; } else { return text.toUpperCase() === text; }

};