Reverse

Remove. Write a . function. called . remove. that will accept two strings: (1) a character to remove from a string, and (2) the string from which the character should be removed. Return a copy of the second argument with all occurrences of the first argument removed. You may assume that the first string is exactly one character long. ................
................