const affirmations = [
“I roll every putt with confidence and clarity.”,
“My speed control is instinctive and reliable.”,
“I commit fully to every read and stroke.”,
“I trust my routine under pressure.”,
“I start every putt on my intended line.”,
“I am calm, focused, and decisive on the greens.”,
“Every putt is an opportunity, not a test.”,
“I accept the result and stay committed to the process.”,
“I see the line clearly and roll it with conviction.”,
“I am becoming an elite putter.”
];
const randomIndex = Math.floor(Math.random() * affirmations.length);
document.getElementById(“affirmation”).innerText = affirmations[randomIndex];
