I am using MySQL database and have created table that stores user's characters names from my Discord Bot.
I want my bot to display this list on Discord after using command, but it just returns [object Object].
I tried JSON.stringify() but it doesn't work. Is there something more to it I don't know about?
con.query (`SELECT Name FROM ${message.author.username}list`, (err, rows) => {
if(err) throw err;
JSON.stringify(rows);
message.reply(rows);
Both with and without stringify result are as in the picture]
