javascript
// Get the form element
const form = document.getElementById('myForm');                    

// Add a form submit event listener
form.addEventListener('submit', function(event) {
    event.preventDefault(); // Prevent form submission

    // Access and log the values
    const name = form.elements.name.value;
    const email = form.elements.email.value;
    console.log(`Name: ${name}, Email: ${email}`);
});