In a Play Audio action, you can have it play an Expression as one of the options. That expression can be used to play prompts, and you could use that to examine the product names brought back by the Bridge action.
What does your return look like from the Bridge action? That would shape how you set up the Expression.
A couple of possible examples for the Expression:
IF(Task.Product1=="Bananas", ToAudio(Prompt.Bananas),IF(Task.Product1=="Lemons", ToAudio(Prompt.Lemons),IF(Task.Product1=="Oranges", ToAudio(Prompt.Oranges),ToAudioBlank(0))))
or
Append(IF(Length(Task.Product1)>0,ToAudio(Prompt.Product1),ToAudioBlank(100)),
IF(Length(Task.Product2)>0,ToAudio(Prompt.Product2),ToAudioBlank(100)),
IF(Length(Task.Product3)>0,ToAudio(Prompt.Product3),ToAudioBlank(100)))