after MySQL looks up data, for example, the following data is returned after executing a lookup statement: 
 RowDataPacket {
ID: 1,
issue: "704929",
userName: "",
group: "",
oper: "",
num: "6",
score: "50",
time: 2018-09-20T09:56:39.000Z,
bonusFlag: 0,
bonusScore: "0",
flag: 0 } 
 what should I do if I want to remove the field name and keep only the data? The fields are removed as follows: 
 RowDataPacket {
 1,
 "704929",
 "",
 "",
 "",
 "6",
 "50",
 2018-09-20T09:56:39.000Z,
 0,
"0",
 0 } 
 
 