Using Java, given the following sequence of integers: 6 8 7 3 4 1 9 5 2 7 is applied to five distinctly different calls to the method getDiff such that five distinctly different results are returned and displayed by the code: result1 = getDiff(1); result2 = getDiff(2); result3 = getDiff(3); result4 = getDiff(4); result5 = getDiff(5); System.out.println("result1 = ?"); System.out.println("result2 = ?"); System.out.println("result3 = ?"); System.out.println("result4 = ?"); System.out.println("result5 = ?"); What will be the output of the code?