Dashboard collection table - how to select a change page.

Created a collection and imported date to it.
Created a dashboard page to show all rows of selected columns in a TABLE
Created a CHANGE page for one record. linked it to the same collection.

How do I specify the CHANGE page for the selected row

I have read a lot. Found this code. It will run. I can see stuff in the debugger.

export function table1_rowSelect(event) {
 // Add your code for this event here: 
 let rowData = event.rowData;
    console.log(rowData);
 let rowIndex = event.rowIndex;   
    console.log(rowIndex);
}

So where do I specify the page name and pass it the index

THANKS… New to Corvid code but coded for 45 years. Just new to this environment. I learn by doing.