From 5343bc9331ca755a5d15ec050c74a539c16fdec2 Mon Sep 17 00:00:00 2001 From: Alex Brow Date: Sun, 23 Feb 2020 22:17:41 -0500 Subject: [PATCH] brub --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) }