Math.max

var Score1 = 75
var Score2 = 65
var myMath = Math.max(Score1, Score2) // returns 75

Close