set timeout?

Hello guys,

I don’t have any experience with code but I found one nice typing code on the internet and add it to velo.
The thing is I need the animation to start at different timing and not immediately as the site goes up. Does anyone know how to do this in code?

$w.onReady(()=>{
	setTimeout(()=>{ INSERT SOME CODE HERE },500);
	
	setTimeout(()=>{ INSERT SOME CODE HERE	},1000);

	setTimeout(()=>{ INSERT SOME CODE HERE	},1500);
});