if(!args[2])returnmessage.channel.send(':x: Please provide a number on the position of the song that you wan\'t to remove!');
constsongNum=parseInt(args[2])-1;
if(isNaN(songNum))returnmessage.channel.send(':x: You need to enter a __number__!');
if(parseInt(songNum)>client.global.db.playlists[message.guild.id].songs.size)returnmessage.channel.send(`:x: There is only ${serverQueue.songs.size} amount of songs in the queue!`);
message.channel.send(`🗑️ removed \`${client.global.db.playlists[message.guild.id].songs[songNum].title}\` from the playlist!`);