Gives bug, do not know the reason

Tell us what’s happening:

// running tests

golfScore(4, 5) should return "Bogey" 
// tests completed

**Your code so far**
      
```js

var names = ["Hole-in-one!", "Eagle", "Birdie", "Par", "Bogey", "Double Bogey", "Go Home!"];
function golfScore(par, strokes) {
// Only change code below this line
if ( par == 4, strokes == 1) {
return names[0];
} else if (par == 4, strokes == 2) {
return names[1];
} else if (par == 5, strokes == 2) {
return names[1];
} else if (par == 4, strokes == 3) { 
return names[2];
} else if (par == 4, strokes == 4) {
  return names [3];
} else if(par == 1, strokes == 1) { 
  return names[0];
} else if(par == 5, strokes == 5) { 
  return names[3];
} else if(par == 4, strokes == 5) { 
  return names[4];
} else if(par == 4, strokes == 6) { 
  return names[5];
} else if(par == 4, strokes == 7) { 
  return names[6];
} else if(par == 5, strokes == 9) { 
  return names[6];
} else
return "Change Me";
// Only change code above this line
}

golfScore(5, 4);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 Edg/86.0.622.38.

Challenge: Golf Code

Link to the challenge:

The commas that you have in your if statements are incorrect.
It also appears that you are just hard-coding the test values, which is the wrong way to solve this problem.