Add the exact two querySelector statements for the action button and live status.
Target app.js · Replace the starter comment in app.js. Evidence Both data-action and data-status elements are selected. Snippetconst actionButton = document.querySelector("[data-action]");
const statusText = document.querySelector("[data-status]");
Next up