Peta orang -orang Ray seperti nama depan mereka datang lebih dulu dalam string di JS

fullAuthorNames = authors
  .map(authors => `${authors.firstName} ${authors.lastName}`);
console.log(fullAuthorNames);
Blushing Baboon