<html>
<font size=2>At 05:38 PM 1/15/05 -0800, you wrote:<br>
<blockquote type=cite class=cite cite>Hi Sandy--<br><br>
I'd say the book is trying to discourage this type of thing:<br><br>
&nbsp;&nbsp;&nbsp; my @array =&nbsp; ( '00', '01', '02', '03' );<br>
&nbsp;&nbsp;&nbsp; $array[4] = '04';<br><br>
in favor of:<br><br>
&nbsp;&nbsp;&nbsp; my @array =&nbsp; ( '00', '01', '02', '03' );<br>
&nbsp;&nbsp;&nbsp; push @array, '04';<br><br>
Using push will prevent you from typo-ing &quot;$array[44] =
'04';&quot;<br>
which'll result in an array where elements 4 through 43 are
undef!</blockquote><br>
Oh, good point.&nbsp; Thanks!</font><br>

<font size=2><br>
--Sandy Santra</font></html>