You won't need to make an if-else statement, since there's only one branch to our logic. You can use the example from the first conditional logic challenge if you need help.
Hint: You'll need to use a ">" in your code to check if one side is greater than another
if (event.target.matches('.plus-three')){
counter = counter + 3;
alert(counter);
if (counter > 21) {
alert("You lose!");
}
}