You can kind of do that like this... ```js for (const property in req) { console.log(`${property}

You can kind of do that like this...

for (const property in req) {
  console.log(`${property}: ${req[property]}`);
}
Was this page helpful?