Hi,
I need to create random 6 alphabets from A-Z & I figured it out to use ClearCollect function
ClearCollect(colAlphabet, Split("ABCDEFGHIJKLMNOPQRSTUVWXYZ", ""));
ClearCollect(colThreeLetters, FirstN(Shuffle(colAlphabet), 6));
How to extract this result to text label?

Thanks