Returns the element at the specified position in the string.
x[y] -> Returns the y th element from string or array x.
x[y to z] -> Returns the y to z range from String.
Depends on the usage (see above).
"abc"[2] -> Returns "b".