const quizQuestions = [ { question: "What's your favorite way to relax?", options: ["Reading", "Art", "Playing games", "Socialising", "Listening to music", "Watching videos", "I don't get to relax much", "Eating"], }, { question: "How do you handle stress?", options: ["Calmly", "I get irritable", "Dissociating", "Seeking reassurance", "I don't.", "Overanalysing", "With denial", "I'm too cool to get stressed lmao"], }, { question: "What do you value most?", options: ["Knowledge", "Humour", "Love", "Peace", "Fun", "Myself"], }, { question: "What's your favourite colour?", options: ["Red", "Orange", "Yellow", "Green", "Blue", "Purple", "Black", "Rainbow"], }, { question: "What's your favourite food?", options: ["Meat", "Tea and Biscuits", "Sweet Treats", "Mexican", "Italian", "Fruit", "Ramen", "Cigarettes"], }, { question: "How do you express yourself?", options: ["Art", "Talking", "Gardening", "Ranting", "Organising", "Dressing up"], }, { question: "What do you consider a flaw of yours?", options: ["I'm a bit of a doormat", "I'm short tempered", "I have no flaws", "I don't feel my feelings", "I'm loud", "I can be clingy", "I don't have much of an identity myself", "I think I can be annoying"], }, { question: "How do you handle conflict?", options: ["Discuss it openly", "Avoid it", "Fight", "Try to find a compromise", "Run away", "Freeze up", "Cry"], }, { question: "What type of environment do you prefer?", options: ["Quiet and peaceful", "Energetic and Fun", "Outdoors", "Somewhere cosy", "With friends"], }, { question: "What role do you typically take on?", options: ["Leader", "Organiser", "Protector", "Helper", "Go with the flow"], }, { question: "What best describes your decision-making style?", options: ["Analytical and logical", "Intuitive and spontaneous", "Collaborative and inclusive", "Impulsive and creative"], }, ]; const results = [ { name: "Danny", criteria: [5, 3, 2, 2, 6, 1, 5, 1, 3, 4, 1, 2] }, { name: "Zephyr", criteria: [3, 0, 2, 0, 3, 0, 1, 0, 2, 0, 1, 1] }, { name: "Nix", criteria: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, // Scores for Nix // Add other characters here... ]; // The rest of your quiz logic goes here...