Category: Math Kind: Operation Tags: Dice, Seed Description: Get a random item from a list
<aside> 💡
Random numbers generated by computers are not truly random, but rather pseudo-random. They are produced by algorithms that, while appearing random, are deterministic and predictable. This means the same algorithm will generate the same sequence of numbers if given the same starting conditions.
In random number generation, a seed is a starting number used to initialize a random number generator (RNG). It's essentially a point within a predetermined sequence of "random" numbers where the generator starts producing values.
</aside>
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
List | L | Any | List | The list to get the item from |
Seed | S | Number | Item | The seed for the random number |
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Value | V | Any | Item | The random item |
Feed in a list
Feed in a number for the seed
The result is a random item in the list
<aside> 💡
The random list item is selected by the node producing a random integer, representing the index in the list on the item.
</aside>