I want to combine one more statement in the textContent if the license === "Less than 2 years" and i cant do this in else if cause i already have too much if else statements yet to add
if (
((limits === "20" || limits === "30" && recorded_sp === "10 mph over limit") ||
(limits === "40" || limits === "50" && recorded_sp === "15 mph over limit") ||
(limits === "60" || limits === "70" && recorded_sp === "20 mph over limit")) &&
license === "Over 2 years" &&
(points === "3" || points === "4" || points === "5" ) &&
(paperwork === "None, just stopped or flashed by camera" ||
paperwork === "Notice of intended prosecution") &&
towing === "No" &&
vehicle === "No" &&
carriage === "- - -" &&
place === "No" &&
conditions === "No" &&
passengers === "No" &&
driving_for === "No")
{
display.textContent =
"You are within the range for the police to exercise their discretion and you may be offered a fixed penalty notice £100 3 points OR a speed awareness course. If you have received your notice of intended prosecution you should complete the driver information on the S172 notice and explain you are within the range and say you are willing to do a speed awareness course Please note that you will not usually be offered a speed awareness course if you have completed one in the past 3 years.";
}
}