Object.values in a separate json file

Here’s what my code is so far:

bot.on(“message”, message => {
if (message.guild !== null && message.member !== null) {
let msg = message.content.toLowerCase();
if (msg.startsWith(prefix + “test”)) {
const data = require("./data/verified.json");
message.channel.send(Object.values(data))

}

}
});
Here’s the Json file where the data is stored:
[
{ “robloxUsername”: “azlentic”, “discord”: “371093808588390402” },
{ “robloxUsername”: “Yeah_Ember”, “discord”: “357259124314210304” },
{ “robloxUsername”: “Mylolkindness”, “discord”: “399332676831674370”},
{ “robloxUsername”: “funland765”, “discord”: “305012284864856064” },
{ “robloxUsername”: “ddayviews”, “discord”: “628067468375621633” },
{ “robloxUsername”: “burnsy222”, “discord”: “567970342002229248” },
{ “robloxUsername”: “ok_Leahh”, “discord”: “609070569882910731” },
{ “robloxUsername”: “LittleHorror43”, “discord”: “521238417112170512” },
{ “robloxUsername”: “MrBuIIet”, “discord”: “596974026342137866” },
{ “robloxUsername”: “JJloggers”, “discord”: “529747981759414275” },
{ “robloxUsername”: “BigManAydan2”, “discord”: “449952393342353409” },
{ “robloxUsername”: “kc_1360”, “discord”: “554441364952055809” },
{ “robloxUsername”: “FreezeBall1”, “discord”: “339694791543619584” }
]

What I’m trying to do is use Object.values to find the line where the author’s ID is the same as the ID in that line of data, then separate that into 2 variables, robloxUsername and discord.

I can explain more if that’s too confusing.