I need to write a function that accepts a string as a parameter and returns the second letter of each word.
ModuleName.function_name("Hello World! This is a test.")
# --> "eohse"
I tried it using Enum functions but it didn’t work out.
Can anyone find me a solution?