Discord.js v13 Kirim Embed

const { MessageEmbed } = require('discord.js');
const embed = new MessageEmbed()
  .setTitle(`Testing`)
  .setDescription(`This is the description`)
  .setTimestamp();
<Channel>.send({ content: `String / Message to send`, embeds: [embed]});
Lord Geir Andersen