Find the common integer values from two arrays Instruction Write a Java program to find common elements between two integer arrays. Example output Array one: [1, 2, 5, 5, 8, 9, 7, 10] Array two: [1, 0, 6, 15, 6, 4, 7, 0] The following common integers were found: [1, 7]