Get simple advice before your palm reading session with Jonathan.
Your Personal Advice Generator
Click the button to receive advice.
for the js part
const advices = [
"Trust your intuition.",
"Patience will bring good results.",
"Take things one step at a time.",
"Be open to new experiences.",
"Today is a day to focus on self-care.",
"Believe in the power of positivity.",
"Be mindful of your surroundings.",
"Take a leap of faith.",
"Sometimes, silence is the best response."
];
// Function to generate random advice
function generateAdvice() {
const randomIndex = Math.floor(Math.random() * advices.length);
document.getElementById("advice").innerText = advices[randomIndex];
}