Spot the bug - #101: Newsletter Form

Newsletter signup silently sends empty emails, why though

form.addEventListener('submit', (e) => {
  e.preventDefault();
  const data = new FormData();
  fetch('/subscribe', { method: 'POST', body: data });
});

Reply with what is broken and how you would fix it.