Array.pop();

PHOTO EMBED

Wed Aug 24 2022 10:55:45 GMT+0000 (Coordinated Universal Time)

Saved by @Carminos

let secretMessage = ['Learning', 'is', 'not', 'about', 'what', 'you', 'get', 'easily', 'the', 'first', 'time,', 'it', 'is', 'about', 'what', 'you', 'can', 'figure', 'out.', '-2015,', 'Chris', 'Pine,', 'Learn', 'JavaScript']; // 24 characters

const removed = secretMessage.pop(); // 

console.log(secretMessage.length); // 23 characters, why not 24?
content_copyCOPY