Hi, Luis,
for a random allocation you need a "random number".
So create one in a question of type "equation". Let's call it "random".
As you will have seen in the thousands of examples here in the forum, we use the save way to do this.
{if(is_empty(random),rand(1,NumberOfFruits),random)}
Now you have different options to show the random fruit.
1. Either by tayloring in each question as shown here
[url]
www.limesurvey.org/manual/ExpressionScri...7BMrs.7D_Smith....22
[/url]
In your case:
For me {if(random==1,"apples",if(random==2,"strawberries",if(random=

,"melons",....)))...} are quite ...
2. By defining the selected fruit in a second equation and using this.
So create a second question of type equation. Let's call it "selFruit".
{if(random==1,"apples",if(random==2,"strawberries",if(random=

,"melons",....)))...}
Now you can use the reference to this question, like
For me {selFruit} are quite ...
Joffm