Create a function that will concatenate two strings, combining them with a specified separator. To do so, write a function called string_concatenator. This function should have the following inputs, outputs, and internal procedures: Input(s) string1 - string string2 - string separator - string Output(s) output - string Procedure(s): concatenate string1 to string2 with separator in between them. return the result

Q&A Education