I\'m having a problem with my hangman program. I really think what I need to do is beyond what I understand about java. Here\'s my code
import java.io.BufferedRe
You need to save the read line in a String object and assign it to a certain field of the array. For example:
String
wordList[0] = myString;
This would assign the value of myString to the first field of your array.
myString