What's true about this code snippet?
countdown(10) counts from 10 to 1countdown() is a recursive functionGreat! 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.