Only the middle Write a function, only_the_middle, that takes a string as a parameter and returns the middle of the string. For "Hello", the function should return "ell" For "strong", the function should return "tron" func assume that the parameter will always be a string of length or greater.