[12pts] Write а Jаvа methоd named cоurseCоde. It receives a 1D array of Strings and a 1D array of ints as inputs and returns a 1D array of Strings. The input String array contains Georgia Tech course subjects (i.e. CS) and the input int array contains Georgia Tech course numbers (i.e. 1331). The entries in the returned array should contain the course code that is obtained by combining the corresponding elements of the input arrays. Example: Course Subject: ["CS", "MATH", "CS", "ECE"] Course Number: [1331, 3012, 3600, 2031] Output: ["CS1331", "MATH3012", "CS3600", "ECE2031"]