in reply to Reading parts of array elements

I'd say, if, for example, you want to get the second char from the second array element:
say substr($foo[1], 1, 1);
The last substr element means that you only need 1 character from the string.