Question: Write a static method remove Duplicates (character [] in) that returns a new array of the character in the given array, but without any duplicate character. Always keep the first copy of the character and remove subsequent ones. For example, if in contain b, d a, b, f, a, g, a, a, and f, the method will return and array containing b, d, a, f, and g.