2nd row of description in embed

const { EmbedBuilder } = require('discord.js');

module.exports = {
  name: "socialmedia",
  description: "Returns websocket latency",

  run: async (client, interaction) => {
    const embed = new EmbedBuilder()
      .setColor("#FF0000")
      .setTitle("duxk's socialmedia")
      .setDescription("Twitch:," + "\n" + "Twitter:");
    interaction.followUp({ embeds: [embed] });
  },
};


How can i make it that Twitter: is on a seperate row under Twitch
because my way(above) doesnt work
Was this page helpful?