var myList = [1, 2, 3]; append(myList, 4); // Appends 4 at the end of the list console.log(myList); // [1, 2, 3, 4]