@Shuffle()

New in 2.0

Randomly shuffle input items

ArraySince 2.0.0

Parameters

NameTypeRequiredDefaultDescription
itemsPipe-separated list of items to shuffle, e.g. a|b|c

Usage

@Shuffle(arg0)

Shuffle the given items

Example:
@Shuffle(a|b|c|d)
Output:
["c","a","d","b"]
← Back to Function Reference