Problem auto loading a page after a specified time.

Hello, I’m trying to autoload a page after 5 seconds but can’t get it to work. Here is the code I’m using:
import wixLocation from ‘wix-location’ ;

$w.onReady( function () {
setTimeout(() => {
wixLocation.to( “/closet” );
}, 5 000 );
});
I’m trying to link the loading page to the closet page.