···3535random(lower: string, upper: string): string
3636```
37373838-Produces a random string between the inclusive lower and upper bounds. If only one argument is provided, a string between 'A' and the given string is returned.
3838+Produces a random string between the inclusive `lower` and `upper` bounds. If only one argument is provided, a string between `'A'` and the given string is returned.
39394040```js
4141import { random } from 'bb26'
···5151range(start: string, end: string): string[]
5252```
53535454-Creates an array of bijective base-26 numerals progressing from start up to, but not including, end.
5555-5656-If end is not specified, it's set to start with start then set to 'A'.
5454+Creates an array of bijective base-26 numerals progressing from `start` up to, but not including, `end`. If `end` is not specified, it's set to `start` with `start` then set to `'A'`.
57555856```js
5957import { range } from 'bb26'