For example I'm making a hangman program and for the words I want to make an array called words and the items in words are the letters what ever word
This is what I thought you could do:
String[] words = new String [15];
words[1] = String[] MILK = {"M","I","L","K"};
words[2] = String[] CLOTH = {"C","L","O","T","H"};
chararrays instead, e.g.{'M', 'I', 'L', 'K'}.