for(var/i in List)
stat("List", List[i])
Problem description:
I'm trying to write out a list inside the statpanel but it won't refresh the list, if I declare the list as List[4] it will show up as "List _blank_" four times, but when I change List[1]= "Hi" it doesn't update in the statpanel, "Hi" is in the list but it doesn't show up in the panel in the place of the first blank, I don't know why it isn't working
Also, you don't have to break the list into individual elements with that for loop