String Space
[email protected] // 1.0 // type-checkable
Write a function called space
that takes one string parameter and returns the result of
adding a space between each pair of characters in the original string.
Note that you should not add a space at the beginning or end.
For example, given "space" you would return "s p a c e".