diff --git a/src/index.js b/src/index.js index fca2b0e..7eb0a25 100755 --- a/src/index.js +++ b/src/index.js @@ -288,7 +288,7 @@ client.on("message", async message => { ' i forgot', ' Asia is a continent' ] - let number = Math.floor(Math.random() * (max - min) + min)]) //The maximum is exclusive and the minimum is inclusive + let number = Math.floor(Math.random() * (max - min) + min) //The maximum is exclusive and the minimum is inclusive return message.channerl.send(quotes[number]) }