ID:156144
 
var/list/apples=list("Yummy!","Blech!")
apples[0]="I want one!"

world<<pick(apples)


I'm not sure where this goes, but I have a question; is 0 a valid array index in DM? If I were to set 0 to something would it be included in the array and would pick() be able to select "I want one!"?
Don't think so.
You can't have a list with a limit of 0. The list would contain nothing, and would serve no purpose then.

So, no.
BYOND indexes lists starting at 1, not 0. So no, not valid.