I have 2 input lists, list1 = ["a","b","c"] and list2 = ["1","2","3"]. Given that the size of both lists is always bound to be the same, i need a resultant list that reads ["a1","a2","a3"].
While this can be done easily in earlier Java versions, I am interested to know how this can be achieved using Streams in Java 8.