How do i pick a specific amount of word from a text list that i have created so i can get it to show on a label?

So, i created a list of words, about maybe 20-25 words and I want to make a function where I can pick about 5-10 words from the list and show it to the label, I just want it to show some random words on a label that i have. Does anyone have a solution for this? anything is appreciated.

  1. Put them in a ListView, one word per row.
  2. Use the ListVew AfterPicking Block to collect a picked word.
  3. Add that word to a Global variable (e.g. 'Sentence')
  4. Update the Label with the variable

Snap1

hm ok, thanks for helping me!