Create a function that returns the indices of the vowels in a string (A E I O U Y).
NOTE:
- You should design your indexer to be easily changed to support other conditions (`isvowel`, `ischar`, `isspace`, etc).
Examples
(string-index 'isvowel "apple")
> (1 5)
(string-index 'isvowel "hello")
> (2 5)
(string-index 'isvowel "STRAWBERRY")
> (4 7 10)
(string-index 'isvowel "pInEaPPLe")
> (2 4 5 9)
(string-index 'isvowel "ABCDCDEFGHIJ6789+%*/&|KLMNOPQRS 4567 %*/&|^~ qABCDrstuvwx'#()[]{ !<>;,.

ABCD0123EFGH6789+%*/&|IJKLMNOfghijklABCDmnop8739qrstuvwxyz'#()ABCD[]{}=-0123456789+%*/&|^~!<>;,.

")
> (1 7 11 27 47 54 75 83 97 103 107 111 117 127 131 137)