how to create a random char from a string
say that I have a very long string, say (1000) words and I want to create 2 random string from that long string, is this how I would do it using the Math.random?
where seed is the two random string that I take from the long string and book is the long string
for (int i = 0; i < 2; i++){
seed += book.charAt((int) (Math.random() * (book.length()-1)));
}

