Static export option in Next.js lets you build pages ahead of time as static HTML files. You write React components and export an async function called getStaticProps that fetches data during the build. Next.js runs getStaticProps once, then renders the page with those props to HTML. Running 'next export' creates static HTML files for all pages using getStaticProps. When users visit, the browser loads the static HTML instantly without running server code. This method is great for fast, static websites. The example code shows getStaticProps returning a message prop, which the page renders inside an h1 tag. The execution table traces each step: calling getStaticProps, rendering the component, generating HTML, and user loading the page. The variable tracker shows the message prop value fixed after build. Key moments clarify why getStaticProps runs only once and how data is static. The quiz tests understanding of message value, when HTML is generated, and what happens if getStaticProps is removed.