Why its not geting online why

Question:
Why is not geting online
Repl link:
https://replit.com/@xtroxtro932/Nodejs?s=app

import discord

const { Client. intents } =
require('discord.js');
const client = new Client({ intents:
[ Intents.FLAGS.GUILDS,
intens.FLAGS.GUILD_MESSAGES] });

const token = "" ;

client.on( 'ready', () => {
    console.log('Logged in as $
{client.user.tag}`);
});

cleint.on('messageCreate', (message)
=> {
    if (message.content === '!ping')
{
        message.replay('pong!');
    }
});
client.login(token);

Welcome to Ask! You started your string with an apostrophe but ended with a backtick. That’s your problem.
image

3 Likes