I have a list and a string below:
fruits = ['banana', 'apple', 'plum']
mystr = 'i like the following fruits: '
How can I concatenate them so I get (keeping in mind that the enum may change size) :
i like the following fruits: 
banana
apple
plum
I need the mystr in the starting and fruit names one by one as shown 
 
    