Random Alphabet Letter Generator
Generated Letter(s): ${resultText}
`; const fullContent = header + content + footer;const blob = new Blob([fullContent], { type: 'application/msword' });const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'random_letter.doc'; link.click();URL.revokeObjectURL(link.href); }