Aligned fields in embed

Hello !
I'm trying to align 4 fields of an Embed ( like a 2x2 matrix, 2 fields above 2 fields ), I did something like this :
const scoreboard = new EmbedBuilder()
                .setColor(colorInfo)
                .setDescription(`**Tableau des scores**`)
                .addFields(
                    {name: `${teamNames[0]}`, value: `${teamScores[0]}`, inline: true},
                    {name: `${teamNames[1]}`, value: `${teamScores[1]}`, inline: true},
                    {name: `${teamNames[2]}`, value: `${teamScores[2]}`, inline: true},
                    {name: `${teamNames[3]}`, value: `${teamScores[3]}`, inline: true}
                );

But I get a bad result ( see attached screenshot ), I tried to put some
inline: false
to see what it does but I can't manage to align these 4 fields.
Thank you in advance :)
image.png
Was this page helpful?