Hello there, I would like to display results from a from loop randomly and I have no idea how to do it. This is the for loop that i have:
for (int i = 0; i < object.length(); i++)
{
System.out.println(displaytext(i));
}
I basically want to display some text I have stored in variables else where, but i don't want to display them serially, i want to show them randomly. I also don't want any of the text to be displayed more then once.
All help is appreciated, thanks!