Create a function that will put the first argument, a character, between every word in the second argument, a string.
add("R", "ruby is fun") ➞ "rubyRisRfun"
add("#", "hello world!") ➞ "hello#world!"
add("#", " ") ➞ "#"Make sure there are no spaces between words when returning the function.