How can you return the value of a character at a specified position in a string?
For instance, say I have the following string:
"Baseball, Football, Hockey and Basketball"
If I wanted to return the value of the character at positions 5 and 23 ("b", "c"), how...