I want the function "timedText" to repeat itself, how is that possible?
So here is my code that I want to go around for ever, how do I fix that?
function timedText() {
setTimeout(myTimeout1, 0)
setTimeout(myTimeout2, 500)
setTimeout(myTimeout3, 1000)
setTimeout(myTimeout4, 1500)
}