Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 327 Bytes

random.md

File metadata and controls

11 lines (7 loc) · 327 Bytes

Faker.Random

Faker.Random.Element(new[] {1, 2, 3, 4, 5})        //=> 5

Faker.Random.Element("test")                       //=> "e"

Faker.Random.Assortment(new[] {1, 2, 3, 4, 5}, 5)  // => [3, 2, 4, 5, 1]

Faker.Random.Assortment(new[] {"a", "b", "c"}, 10) // => ["b", "a", "a", "c", "b", "a", "b", "c", "c", "a"]