Help me in solving JS04 problem

My issue

const start = 10;
const end = 20;

for (var i = 0; i < start; i++) {
console.log('resultado ’ + (i++))
}

My code

/* Write the JS Code to print all even numbers between start and end.*/ 
const start = 10;
const end = 20;

for (var i = 0; i < start; i++) {
    console.log('resultado ' + (i++))
}

Learning course: Web development using JavaScript
Problem Link: Loops Practice Problem in Web development using JavaScript - CodeChef

@jordansousajc
u have to do it simply like this

/* Solution as follows */ 
const start = 10;
const end = 20;

for (var i = start; i <= end; i++) {
    if (i%2 === 0){
        console.log(i);
    }
}