Problem
Add a method named problem3 that accepts two arrays of string values. Find and common elements. You may assume each array contains unique elements. Return the result. Test case: array1 is {"banana", "apple", "orange"}, array2 is {"apple", "strawberry", "watermelon", "banana"}, return {"banana", "apple"}.