What's true about this code snippet?

countdown(10) counts from 10 to 1countdown() is a recursive functionIt leads to an infinite loopIt doesn't display anything

Great! The countdown() function is a recursive function that displays the numbers from start to 1.

Almost! The countdown() function is a recursive function that displays the numbers from start to 1.