5.24 lab: longest string (eo) write a method, findlongest(), that takes two strings as parameters and returns the longest string. if the strings are the same length then return the second string. ex. if the input is: almond pistachio the method findlongest() returns and then the program outputs: pistachio your program must define the following method: public string findlongest(string str1, string str2)