[Solved] How can I read a file and randomly pull information from it and add it to an array list? [closed]
Read the file sequentially – thats the easiest route. Then randomly shuffle the collection. Actually, another question. Could you use math.random() to look at the lines of the text file and if, lets say, the line 5 comes up then you remove it from the parameters you set for math.random()? It would pick from 0-9 … Read more