fix(curriculum): update instructions for step 24 of football team cards project (#54326)

This commit is contained in:
JeevaRamanathan 2024-04-08 23:51:26 +05:30 committed by GitHub
parent 84b1a402a8
commit ff08095b9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ console.log(greeting("John")); // Hello John
console.log(greeting()); // Hello Anonymous
```
Add a new parameter to your `setPlayerCards` function called `arr` and assign it a default value of `players`.
Add a new parameter to your `setPlayerCards` function called `arr` and assign it a default value of `players`. Remember that you destructured the `players` variable from the `myFavoriteFootballTeam` object on line `175`.
# --hints--