💡 Reminder: This block must go at the end of your section in chaos_fragment.html. You can now safely upload it,
let i = 0;
function typeEffect() {
if (i < chaosText.length) {
document.getElementById("typed-chaos").innerHTML += chaosText.charAt(i);
i++;
setTimeout(typeEffect, 25);
}
}
window.onload = typeEffect;