Modify the following: example.js ``` function handleMessage (req) { // if (req.message === 'ping') { sendMessage(req) // {message: 'pong', body: 'hello from nodejs app'} // } } ``` background.js ``` port.postMessage(new Array(13107)) function handleMessage (req) { // if (req.message === 'pong') { // console.log(req) // } console.log(req); } ``` Notice the message is not sent to the browser. See - https://github.com/nodejs/node/issues/6456 - https://github.com/nodejs/node/issues/11568#issuecomment-282765300 - https://github.com/denoland/deno/discussions/17236#discussioncomment-4566134