let items = ['cat', 'dog', 'umbrella']; let lenght = items.push('pen'); //Return 4, the length of the array after push console.log(items); //Print the whole array after push