urnDraw('people', 'IV01');
html('The combination is on the ballot '.value('IV01_01').' - '.value('IV01_02').'
');
**Note:** In the simplest case, a combination just consists of a single value.
**Note:** Read the chapter [[:de:create:randomization|Randomization]] for comprehensive examples.
===== Example 2 =====
With the help of the return value, you can end the survey when the urn is emptied a sufficient number of times. The following PHP code both displays the text element "over", and hides the //Next// button after the third collection (i.e. when each ballot has been drawn 3 times).
$round = urnDraw('people', 'IV01');
if ($round > 3) {
text('over'); // corresponding text element has to be created in "Text Elements and Labels"
buttonHide(); // hides all buttons
pageStop(); // no other content is run on the page (provided there are still questions, text etc. below the PHP code)
}