/***************************** You are to write the findSecondLargest method that is being called below you need to return the secondLargest element in the 2D array from the method. Hand in the printed source code on Friday at the beginning of lecture. Do it yourself, learn what you're doing, it will show if you don't. *******************************/ public class Output { public static void main(String [] args) { Output out = new Output(); int rows = 3, cols=4; int myArray[][] = {{34,35,14, 22},{11, 20,30,33}, {34, 23, 45, 22}}; int sec = out.findSecondLargest(myArray, rows, cols); System.out.println(sec); } }