def goodbye(name)
return "Bye " + name + “.”
end
puts goodbye(“Daniel”) # => “Bye Daniel.”
puts goodbye(“Mark”) # => “Bye Mark.”
puts goodbye(“Beyonce”) # => “Bye Beyonce.”
Even the solution has extra space for “Bye Daniel.”, I am just curious why because there is nothing in the solution or my code to put that extra leading space in, Thanks