java20 pts) 5. Writing Code 1 Write a static method that is passed in 2 Strings and return another String made up of the alternating characters from each argument. If one argument is longer than the other, then characters are tacked on to the end of the return String. its Here are some sample calls and their return values: method(‘abc”, “123) returns a1b2c3 method(“xy, “S%2″) returns-xSy%&. method(abcd”, “12”) returns “a1b2od Notice the leftover
OR
OR