Given a list of integers and strings, return a list of only the strings. For example: elementArranger([1,”a”,3]) -> [“a”] elementArranger([“Hershey”,”c”,3,7,5]) -> [“Hershey”,"c"] elementArranger(10,20,36]) -> []