diff --git a/commands/fun/random.js b/commands/fun/random.js
index 7e4bf620..1ce5f7b1 100644
--- a/commands/fun/random.js
+++ b/commands/fun/random.js
@@ -41,7 +41,8 @@ module.exports = class RandomCommand extends Command {
         text = text.replace(/\[adverb\]/, adverb[randNumber(adverb)])
         text = text.replace(/\[noun\]/, noun[randNumber(noun)])
         text = text.replace(/\[adjective\]/, adjective[randNumber(adjective)])
-        } while( text.includes('[verb]') || text.includes('[adverb]') || text.includes('[noun]') || text.includes('[adjective]') )
+        text = text.replace(/\[member\]/, message.guild.members.random().user.username)
+        } while( text.includes('[verb]') || text.includes('[adverb]') || text.includes('[noun]') || text.includes('[adjective]' || text.includes('[member]')) )
 
 //      Send the final text
         message.say(text);