Please help trying to get this function to return value back to my main process. currently everything shows in the console however if I return the object its blank or undefined
const GetSelectDeviceFromDB = () => {
  db.all("SELECT * FROM device_list", function (err, rows) {
    rows.forEach(function (row) {
      console.log(row.device);
      return row.device;
    });
  });
};
module.exports = { GetSelectDeviceFromDB };
OUPUTS:
console.log =.  { device1, device2 } 
return = undefined and if I add the return to the beginning of the sql statement I get {}
 
     
    