Complete the static mkString method in the MyMethods class so that it formats an array of int values, with the elements separated by a given separator string.

For example, the call mkString(new int[] { 1, 2, 3, 4 }, "|") should return the string "1|2|3|4".