=== Program === var a[2+3]; function main() { var y = 4; a[y] = "A"; print(a[y]); } === Output === Result: null-value Output Entity: standard-out "A"