I was creating a typing app and I needed the program to randomly select one of the strings form my array without having the strings repeating themselves. Here is my code:
string[] words = {"banana", "stun", "consumer", "market", "programming", "lazy", "recruit" };
Random rand = new Random();
then I have it called in my text box. thank you