Display image from Repeater to Lightbox

No errors on Sending Page, but on Lightbox code:

// For full API documentation, including code examples, visit http://wix.to/94BuAAs
import {lightbox} from ‘wix-window’;

$w.onReady( () => {
let item = lightbox.getContext();
$w(“#LBoepartno”).src = item.oe_part_no;
$w(“#LBcomments”).src = item.comments;
});

I am trying to implement this and am getting error:

‘src’ does not exist on '#LBoepartno;
‘src’ does not exist on '#LBcomments;

WHAT IS WRONG HERE???
Thanks

JD