My discord bot code doesnt work

I keep getting the “Discord.client is not a constructor” error even if I right it right

Code:
const Discord = require(‘discord.js’);

client.login(‘token’);

const client = new Discord.Client({
intents: 33027
});

client.once(‘ready’,() => {

console.log(‘ready’);
});

client.on(‘message’, (message) => {

if (message.content === ‘d!check’) {

message.channel.send(‘chock’);
}

});

Error:
TypeError: Discord.client is not a constructor
at Object.

what does it mean by “at Object”? normally it gives a file and line number.