1//if you purposely searched CLEAN CONTENT, then here's an example I use.
2//Usually used when awaiting a message from a user IF the answer isn't supposed to be specific like "Yes" or "No"
3
4 let txt1 = args.join(' ')
5
6 if (collected.first(txt1)) {
7 let text1 = collected.first().cleanContent
8
9 return message.channel.send(text1);
10 }
11