$randomText
$randomText will return a random word out of the given query
Usage
$randomText[text;text;...]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| text | string | Any words/sentences/letters you want to be chosen randomly. | true | 
Example(s)
This will return a random text out of Hello, Bye, Goodnight, See you:
1client.command({2    name: "randomText",3    code: `4  $randomText[Hello;Bye;Goodnight;See you]5  `6});