How to modify code to open links on _blank tab

Hi everyone. Could you please advise me on how to modify this piece of code to make it opens dropdowns links on new tabs instead of the same tab?

I am not a programmer :(. Thanks.

import wixLocation from ‘wix-location’ ;

$w.onReady( function () {
$w( “#dropdown1” || “#dropdown2” ).onChange((event, $w) => {
console.log(event.target.value);
wixLocation.to(event.target.value);
});
});

This example explains how to do this with a button, but you can modify it for a dropdown:
https://www.wix.com/velo/forum/tips-tutorials-examples/opening-a-url-in-a-new-tab-while-running-additional-code