const x = 10;

// Demo highlight
function test(){
    console.log("Hello World!");
}

for(let i = 0; i < x; i++){
    console.log(i);
}