Let's say I have
Char[] one = {'a','b'};
Char[] two = {'c','d'};
What do I need to concatenate them?
Some code:
Random rand = new Random();
int Plength = 6;
char[] i = new char[Plength];
for (int x = 0; x < Plength; x++){
i[x] = one[rand.nestIng(one.length)];
}