I have something that I don't know how to solve. Well, in the database (mongoose) I have some "allWords" columns I don't know how I can add them so that it comes out how many allWords there are (e.g. 10 + 172 + 627 because I have 3 columns in this case). I've tried a loop, but I haven't come to anything sensible.
let sortedMembers = await topSchema.find({}).select(`userID`).select(`allWords`).select(`allJoined`);
message.channel.send({ content: `TOP5:\n\n${i}` })```