Embed PDF

Hello, I’m trying to embed a PDF from a PDF collection on a dynamic page with:

import wixData from ‘wix-data’;
import wixLocation from ‘wix-location’;
let source;
$w.onReady(function(){
$w(“#dynamicDataset“).onRowReady(() => {
source = $w(“#linkSource“).link;
let name = source.split(“/“)[ 4 ];
let nul = source.split(“/“)[ 3 ];
$w(“#html1“).source = (‘ https://docs.wixstatic.com/ugd/${url}?’ );
});
}

and I’m getting these 4 error messages that I can’t figure out:

Any assistance will be much appreciated.