Given the following pseudocode, which is the argument? Module main() Call curveScore(82) End Module Module curveScore(Integer score) Declare Integer newScore Set newScore = score + 5 Display newScore End Module