Write a function that reverses a string. The input string is given as an array of characters s.
s = ["h","e","l","l","o"]
["o","l","l","e","h"]
Run your code to see the output...