> For the complete documentation index, see [llms.txt](https://mwx.twelite.info/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mwx.twelite.info/v0.1.7/api-reference/functions-1/systemfunc/random.md).

# random()

乱数を生成します。

```cpp
uint32_t random(uint32_t maxval)
uint32_t random(uint32_t minval, uint32_t maxval)
```

１行目は`0..(maxval-1)`の値を戻します。**maxvalの値が最大値ではない**ことに注意してください。

２行目は`minval..maxval-1`の値を戻します。
