Well I have a string with a couple of words.
"Blah hello smart"
They get divided up into an array like so:
[0] = "Blah"
[1] = "hello"
[2] = "smart"
Now if the string is only "Blah" I only get one array index
[0] = "Blah"
But I have to check if there is an value with index [1] in the array.
How can I do that?...