```sh
output = random_text [length]
```
Generates random alphanumeric text with the requested length (length is 1 if not provided).
Optional text length. Length is defaulted to 1 if not provided.
The generated alphanumeric value.
```sh
value = random_text 50
echo ${value}
```