I have a starting array, a list of character names, so they are text, not numbers.
I want to randomly choose a character name from this first array, then add that name to a new array.
I want to be able to do this many times throughout the game, without randomly choosing the same name twice.
Essentially, I want to randomly choose a name, add that name to a new list, and permanently delete it from the first array so it can never be picked again.
I've been reading array tutorials all day, and I haven't gotten a clear, clean way to do this.