Need to reset table to page 1 with code

Thank you!
After a couple hours of playing with it, I feel close but I’m not sure how to get the results to display in the table. The console shows the first page has indeed loaded, but it doesn’t refresh the table. It remains on page 2. The sorting still works though.

I’ve tried a few ways to code it but this is where I’m at. What am I missing?

$w(“#dataset2”).loadPage(1)
.then((results) => {
$w(“#dataset2”).setSort( wixData.sort()
.ascending(“title”)
);
});