Tell us what’s happening:
its coming correct answer when I text separately but not showing red mark on codecamp
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 if (strokes >= par + 3 ) {
return "Go Home!";
} else {
return "Change Me";
}
// Only change code above this line
}
// Change these values to test
golfScore(4, 1);```
**Your browser information:**
Your Browser User Agent is: ```Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36```.
**Link to the challenge:**
https://www.freecodecamp.org/challenges/golf-code