Error 11. Subscript operator [] requires array or number type. String can not be used here.

Occurs when you attempt to use subscript operator [] on strings, for example:

tt = "Test";

x = tt[
0 ];