How do I concatenate, or append, all of the arrays that contain text strings into a single array? From the following code:
    String nList[] = {"indonesia", "thailand", "australia"};
    int nIndex[] = {100, 220, 100};
    String vkList[] = {"wounded", "hurt"};
    int vkIndex[] = {309, 430, 550};
    String skList[] = {"robbed", "detained"};
    int skIndex[] = {120, 225};
    String nationality = "";
    //System.out.println(nationality);
I want to store all strings of all three string-containing arrays:
    String nList[] = {"indonesia", "thailand", "australia"};
    String vkList[] = {"wounded", "hurt"};
    String skList[] = {"robbed", "detained"};
into a single array, say array1[].
 
     
     
    