function exibePar(n1,n2){
while(n1<=n2){
if((n1%2)==0){
var par = n1
}
n1++
}
}
console.log(exibePar(0,20))
My code is not showing all the pairs it just shows 0.