The problem with the program is that you're getting a random number between 0 and 6 and then using this random number as an index to get a value from only the first array. There are two problems here,
one[index] will cause an arrayindexoutofboundsexception in some cases because the max index for one is 1 when index can also be 2,3,4, or 5.
also, the objective is to get a random element from THREE arrays of strings, not just one
My suggestion is getting a random number between one and three (inclusive) to choose one of the string arrays, then find a random number between 0 and the chosen array's length. And assign that to the index of the chosen array.