random_int
Generate a random integer within a specified range. Input lower and upper bounds to receive an inclusive random number.
Instructions
Generate a random integer between low and high (inclusive).
Args: low: Lower bound (inclusive) high: Upper bound (inclusive)
Returns: Random integer between low and high
Input Schema
Name | Required | Description | Default |
---|---|---|---|
high | Yes | ||
low | Yes |