Display 4 through 8 in the console by placing the display statement after counter++.
4
8
counter++
Make sure to pick counter++;, followed by console.log(counter);.
counter++;
console.log(counter);