Error 31

operation not defined for strings

You can add strings but not subtract, multiply, divide, ... them.

This works:

a = "12345" + "67890"; // a = "1234567890"

Xpressionist 3