TypeError: reaction.fetchMembers

c.messages.fetch(msgId).then(async themessage =>
{
for (const reaction of themessage.reactions.cache)
{
for (let user of await reaction.fetchMembers())
{
console.log(user);
}
console.log(reaction);
}
});

Does anyone know how to fix this problem?

Does anything pop up in the console?