program test() var a := array(1); a[2] := "hello"; a[4] := "world"; print( a[1] ); print( a[2] ); print( a[4] ); endprogram