let arry = [2, 4, 6, 8, 10, 12, 14, 16]; let lastElement = arry[arry.length - 1]; console.log(lastElement); //Output: 16