insert items to the arraylist using insert and insertrange method
We have seen how we can add items into the ArrayList using Add method. The Add method adds the items at the end of the ArrayList. If you want to insert items in any position of the arrayList, use the Insert and InsertRange methods as shown below.