Hi,
On line 8, you are assigning null to the inputTokens variable, instead of comparing the variable value with null. For comparison, it should be == instead of =
if ( inputTokens == null ){
Argh. JavaScript noob error.
Thanks. That fixed my problem.
How do I mark this question as answered?