Need some help with for() loop

Hello,
I’m working on the TwitcherTV app
Here is my code
TwitchTV

When I run the code here apeare only the last user from userName[] array
how to do that all users appear in the list ?

for loop is fine, but you are only creating one url. You need to either put the code that uses the url inside the for loop, or create an array of urls so each array element has the url with the user name attached.
Hope that makes sense

1 Like

Thanks for advice :slight_smile: