Which score should this branch include? Goal: Make 70 count as a passing score, not only scores above 70.
Track what changes after each comparison.
Write down left, right, and middle before choosing the next branch.
1// Goal: Make 70 count as a passing score, not only scores above 70.2function starterExample() {3if (score >= 70) {4return "pass";5}6}
Which score should this branch include?