const { SlashCommandBuilder } = require('discord.js'); const data = new SlashCommandBuilder() .setName('echo') .setDescription('What do you want it to repeat?') .addStringOption(option => option.setName('input') .setDescription('The input to echo back'));