> For the complete documentation index, see [llms.txt](https://conductor.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://conductor.js.org/master/api-reference/random.md).

# random

```erlang
random :: (Number min, Number max) => Number int
```

## description

Returns a random integer between a lower and a upper bounds.

## example

```javascript
import { random } from 'conductor'

random(1, 10) // 7... well, maybe.
```
