> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/builtins/math/random.md).

# random(low, high)

## Description

`random(low, high)` returns a randomly generated number between two bounds. This function is not cryptographically secure.

## Parameters

`random()` requires two parameters:

* `low`: The lower bound.
* `high`: The upper bound.

## Usage

```javascript
log random(1, 10)
// 4
```
