How do I reshuffle an array of string

Hello team ,

I am working on an automation project . I have an array of string and I would love to reshuffle the array , how can I achieve this in studio

@Godspromise_Obi

Please try this in assign

arrstr = arrstr.OrderBy(Function(x) Guid.NewGuid()).ToArray()

image

cheers

1 Like


Hope this helps