Open a new Tab using Utils.openURL

I'm using the code below to retrieve a URL from LocalStorage and then open it. The issue is that it opens the URL in the current tab and I need it to open in a new browser tab. What am I doing wrong here?

const apiResponse = SpecRxPDF.data;
const urlToExtract = apiResponse.download_url;
utils.openUrl(urlToExtract, "_blank")

Hello, Here is docs

You should use utils.openUrl(urlToExtract) or utils.openUrl(urlToExtract, { newTab: true}) the defualt value of newTab is true.
"_blank" is usage of html synax.

Thanks...that worked!