Cannot even get a button working. What am I missing?

Thanks for your extensive explanations!
It got me some further, but since it is not my basic language I have to dig deeper in it to better understand it.

I had a deadline so I took the help of an external.
Anyway, this is the final result:

import wixData from ‘wix-data’ ;
import wixWindow from “wix-window” ;
import { local } from ‘wix-storage’ ;

$w.onReady( function () {
$w( ‘#button8’ ).onClick((event) => {
let currentItem = $w( ‘#dynamicDataset’ ).getCurrentItem()
let lightBox = currentItem.lightbox
wixWindow.openLightbox(lightBox)
});
});

Thanks again!