# Code help

**URL:** https://forum.kirupa.com/t/code-help/154642
**Category:** Uncategorized
**Created:** [July 11, 2005, 7:19pm UTC](https://forum.kirupa.com/t/code-help/154642 "2005-07-11T19:19:06Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![smack\_boom](https://avatars.discourse-cdn.com/v4/letter/s/919ad9/32.png) [@smack\_boom](https://forum.kirupa.com/u/smack_boom)
#### Post date: [July 11, 2005, 7:19pm UTC](https://forum.kirupa.com/t/code-help/154642/1 "2005-07-11T19:19:06Z")

</div>

Can anyone kinda break this script down for me and explain what it does?

```auto

_root.bullet_a = new Array(300);
for (var bulletnull = 0; bulletnull<300; bulletnull++) {
_root.bullet_a[bulletnull] = 0;
}
_root.debris_a = new Array(600);
for (var debrisnull = 0; debrisnull<600; debrisnull++) {
_root.debris_a[debrisnull] = 0;
}

```
