Shuffle an array of strings.
Strings
a random shuffle strings
import { Faker } from "k6/x/faker"
let faker = new Faker(11)
export default function () {
console.log(faker.strings.shuffleStrings(["none","how","these","keep","trip","congolese","choir","computer","still","far"]))
}
Output (formatted as JSON value)
["these","congolese","far","choir","still","trip","computer","how","keep","none"]
Generator to generate strings.