Randomly selecting values from a list (without replacement)

I have a list of numbers [1…10] that I would like to sample from without replacement. Does anyone have a way to do something like this?

There’s a few posts on this topic that may help. Here’s one that was recently discussed. Is this what you’re looking for?

Let me take a look. Thanks!

Here’s an example of something from that post that might be helpful. This generates three numbers from 1-10 without replacement.

3 Likes

Thanks for sharing this activity. I was able to find the shuffle, list, index method and it worked well for what I was working on.