Hello,
Put the values inside an array, then choose a random value from that array like :
randomIndex = round(random(0, Array.With-1))
value = Array.At(randomIndex)
Then delete this array entry like :
Array.Delete(randomIndex)
This way, the randomly chosen value is removed from the array and your can iterate once more for a second roll (with another random index).