Field Guide · Victoria, Australia
Native Plants of Victoria
Ten fresh questions generated by AI — test your knowledge of the remarkable flora of the Victorian bush.
{loading && (
Consulting the field guide…
)}
{error && (
Something went wrong
{error}
)}
{!loading && !error && questions.length > 0 && !finished && q && (
<>
{/* Progress */}
Question {current + 1} of {questions.length}
Score {score}
{/* Answer dots */}
{questions.map((_, i) => (
))}
{/* Flip card */}
{/* Back = question */}
Question {current + 1} of {questions.length}
{q.question}
{/* Front = options */}
Choose your answer
{q.question}
{q.options.map((opt, idx) => {
let cls = "";
if (answered) {
if (idx === q.correct) cls = selected === idx ? "correct" : "reveal-correct";
else if (idx === selected) cls = "wrong";
}
return (
);
})}
{/* Explanation */}
{answered && (
{answers[answers.length - 1] ? "✓ Correct" : "✗ Incorrect"}
)}
{/* Next */}
{answered && (
)}
>
)}
{finished && (
{score === questions.length ? "🌿" : score >= 7 ? "🌸" : score >= 5 ? "🍃" : "🌱"}
Quiz complete
{score} / {questions.length}
{getResultComment(score, questions.length)}
{answers.map((a, i) => (
))}
)}
>
);
}