Dashboard page redirect problem

I have a dashboard page that has products table. When i click one row on table, I want to redirect product details page(dashboard). If possible, can you tell me how to do it?

$w("#table1").onRowSelect( (event) => {
 let rowData = event.rowData;
 let rowIndex = event.rowIndex;
 let productID = rowData["inventoryItem"]["externalId"];
  
 //wixLocation.to(""); ??
} );