Long Blank Space in Embeds
I have my embed and for some reasons it has a lot of strange blank space, its not happened before with random space?
Here is the code I'm using
Here is the code I'm using

client.on('guildMemberAdd', (member) => {
const incoming_messages = [`It appears ${member} has hopped \n in the server, lets all welcome them!`, `print("${member} has joined")`, `${member}\.inServer = true`]
let welcome = Math.floor(Math.random() * incoming_messages.length)
const E = new MessageEmbed()
.setTitle("**New Member**")
.setDescription(`${incoming_messages[welcome]}`)
.setColor("#A020F0")
.setTimestamp()
console.log("MEMBER JOINED")
member.roles.add([`951942010309345311`])
client.channels.cache.get("952666424436994078").send({ embeds: [E] });
});