Displaying Arrays from set index.

Displaying Arrays from set index.

Hi, if I have the following code:
  1. <br />
  2. <script>
  3.    nme = [1,3,4,1,8, 7];
  4.    alert(nme);
  5. </script>
The alert box displays - 1,3,4,1,8,7.

Is it possible to have the alert box display without the first array being shown so it would just show 3,4,1,8,7?

Thanks in advance.