I have two list string different,
List<String> A= [1,2,3,4]; 
List<String> B= [1,2,5,6]; 
And I want to combine two list, in new list string in List C = new Arraylist ();
how to combine two list string , be like the example:
    C = [1,2,3,4,5,6];
 
     
     
     
     
     
     
     
     
    