Golf Code I can't get it right, please help

Tell us what’s happening:
the last two i cant get them right, can someone help ?

Your code so far

function golfScore(par, strokes) {
  // Only change code below this line
  if(strokes <= 1){
    return "Hole-in-one!";
  } else if (strokes <= par -2) {
    return "Eagle";
  } else if (strokes == par -1) { 
  return "Birdie";
  } else if (strokes == par ) {
    return "Par";
  } else if (strokes == par +1) {
    return "Bogey";
  } else if (strokes == par +2){
    return "Double Bogey";
  } else {
    return "Go Home";
  }
  
  
  // Only change code above this line
}

// Change these values to test
golfScore(5, 4);
golfScore(4, 1);
golfScore(4, 2);
golfScore(5, 2);
golfScore(4, 7);

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6.

Link to the challenge:
https://www.freecodecamp.org/challenges/golf-code

i tried a few different ways

} else if (strokes >= par +3) {
return “Go Home”;
} else {
return “Change Me”;
}

Hi,
All you need to do is add an exclamation mark at the end of Go Home!

omg ! haha thank u so much!

i was really confused on this one.

I was stuck in almost exactly the same way ! I just missed two exclamation marks ! in “Hole-in-one!” & “Go Home!”. I was trying to figure out my mistake for more than half an hour and finally gave up to check the hint. My code was exactly the same that was given in the hint section and I still couldn’t figure out my code wouldn’t pass until I saw this post ! OMG ! Thanks @josmyjj @manuelF