{
for (let i = 0; i < 10000; ++i) {
const n = _.sample(un);
const urn = fillUrn(n);
const firstBall = urn.pop();
if (firstBall === "red") {
mutable firstReds += 1;
const secondBall = urn.pop();
if (secondBall === "red") {
mutable secondRedsGivenFirstRed += 1;
}
}
}
}