.he 'MISHAP090''Page %'
.fo 'Aaron Sloman''February 78'
.sp
: 90 	Bad array access
.br
Arrays have bounds. See the entries on NEWARRAY and
NEWANYARRAY in the SYSVARS demo. If you try to
go beyond the bounds of the array you'll get this error.
It could also happen if you are using the turle, as NEWPICTURE
uses an array.
try the following
 	newarray([1 10 2 20]) -> arr;
 	arr(2,5) =>
 	arr(2,1) =>
 	3 -> arr(5, 22);
