JS Level 11 lesson 3
i cant understand the push() function
<!doctype html>
<html>
<head>
<title>JS Array Operations</title>
</head>
<body>
<script>
let numbers = [1, 22, 333, 4444];
// Perform operations
numbers.reverse().pop().push(55555);
</script>
</body>
</html>