I am trying to fill an array with words from a text file. Each line in the file has exactly one word.
I would like to sequentially fill each position in the array with one line/word.
I planned on using a counter controlled loop to fill each position in the array.
The only problem is reading a single line at [count] from the text file.
Any help would be appreciated.