# 011: Lists # Ordered collections of items # Create a list fruits = ["apple", "banana", "cherry"] # Access by index (zero-based) show fruits[0] # apple show fruits[1] # banana show fruits[2] # cherry # Get list length show "We have {fruits.length} fruits" # Lists can hold any type mixed = [42, "hello", true, 3.14] show mixed