Concept Flow - SPOP for random removal
Start with a Redis Set
Call SPOP command
Redis picks a random element
Remove the element from the set
Return the removed element
Set now has one less element
SPOP removes a random element from a Redis set and returns it, reducing the set size by one.