I have an assignment to print the first n primes, where n is a number entered by the user. (It's a utility program so no prompts for entry are required). I'm making use of a function that tests for prime numbers. My issue is that I always return n+1 primes, and no matter how I change my while or for conditions this is still the case. What can I do to only print n primes?