Had to do it in a short way, excited that it worked
const s = [5, 7, 2];
function editInPlace() {
// Only change code below this line
s.pop();
s.unshift(2)
// Using s = [2, 5, 7] would be invalid
// Only change code above this line
}
editInPlace();