=== Program === function main() { var a[2][3]; a[1][2] = true; print(a[1][2]); }=== Output === Result: null-value Output Entity: standard-out true