We have a question, Q02, in which we want to display 5 choices randomly selected from 10 possible choices.
Every respondent should see 5 choices.
However, for some respondents, one of the 10 possible choices should be excluded based on the answer to a previous question, Q01.
So for example, if the respondent answered "boy" to Q01, then the 10th choice of the 10 possible choices is removed before random selection. The respondent would see 5 of the 9 remaining possible choices.
How can we implement this? If we gate the 10th possible choice behind display logic, it could still be selected as one of the randomly selected 5 choices, so that some respondents would only see 4 choices.
We want to make it so that everybody always sees 5 choices.