$guildNames
$guildNames will return the name of the guilds your bot is in.
Usage
$guildNames[sep?]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| sep? | string | Separator to separate multiple returned values. | false | 
Example(s)
This will return the names of the guilds your bot is in and separate it by a comma:
1client.command({2    name: "guildNames",3    code: `4  $guildNames[, ]5  `6});