const apps = []; apps.push("calculator"); // returns 1 (new length of the array) apps.push("phone", "clock"); // returns 3 (new length of the array)
["calculator", "phone", "clock"]