ArrayListV
<object> = ArrayListV() : Create object of ArrayListV class
<object>.addNode(..item..) will add node to the array list beginning from index 0 upto n. 
Note
You can only add one item at a time. We suggest you iterate over the Array List and call the .addNode() method on every item.
<object>.show: Once every node has been added, use this property to render the array list.