Scrambles the order of a string or array.
Use this when you have a set of values but would like to scramble the order of those values.
menu: veeos ==> Math ==> Arrays ==> randomReorder
library: mathLib
o_randomReorder("this string") returns any string such as "rgnts_hstii" that has all the same characters but in a random order
o_randomReorder( [1,2,3 4] ) could return [1,4,3,2] or [4,1,3,2] or any number of other random reordering.
This should work with any data type and scalar, 1D or 2D arrays.
VEE 7.0+, all platforms