Consider the following methods.public void modParams(int[] x, int[] y, String[] s){x[1] = 5;y = x;s[1] = new String("five");s = new String[3];s[1] = new String("six");}public void print(){int[] a = {1, 2, 3};int[] b = {11, 22, 33};String[] s = {"one", "two", "three"};modParams(a, b, s);System.out.println(a[1] + " " + b[1] + " " + s[1]);}What is printed when print is called?a)2 22 twob)5 22 twoc)5 5 twod)5 22 fivee)5 5 six