What am i supposed to here?

Tell us what’s happening:

Your code so far


// Only change code below this line
function countdown(n) {
if (n < 1) {
  return [];
} else {
  const countArray = countdown(n - 1);
  countArray.push(n);
  return countArray;
}
}
console.log(countup(5)); 
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36.

Challenge: Use Recursion to Create a Countdown

Link to the challenge:

So you don’t need this line
console.log(countup(5));
And you are trying to push it now but is there anything else you can try that might be more effective? Since it doesn’t reach the goal with just push
[5, 4, 3, 2, 1]