var myList = [1, 2, 3]; insertItem(myList, 4); // This adds the value 4 at the end of the list console.log(myList); // [1, 2, 3, 4]