Canadian ReviewsCanadian Reviews
  • What’s On
  • Reviews
  • Digital World
  • Lifestyle
  • Travel
  • Trending
  • Web Stories
Trending Now
REVIEW: This year’s TOsketchfest paid tribute to the endless possibilities of sketch comedy

REVIEW: This year’s TOsketchfest paid tribute to the endless possibilities of sketch comedy

What should you say to teens feeling pressured to fit in? | Canada Voices

What should you say to teens feeling pressured to fit in? | Canada Voices

Happy first day of spring! Montreal is getting heavy snow & a special weather statement

Happy first day of spring! Montreal is getting heavy snow & a special weather statement

Toronto’s best soft ice cream parlour opens for the season, Canada Reviews

Toronto’s best soft ice cream parlour opens for the season, Canada Reviews

Super Mario Bros. Wonder Talking Flower toy is a jump scare machine

Super Mario Bros. Wonder Talking Flower toy is a jump scare machine

Paul Gross, Cabaret, and Ann-Marie MacDonald headline Canadian Stage’s 2026-27 season, Theater News

Paul Gross, Cabaret, and Ann-Marie MacDonald headline Canadian Stage’s 2026-27 season, Theater News

'Secret Lives of Mormon Wives' Cast Raised Concerns About Taylor Frankie Paul in Meeting with ABC Executives

'Secret Lives of Mormon Wives' Cast Raised Concerns About Taylor Frankie Paul in Meeting with ABC Executives

Facebook X (Twitter) Instagram
  • Privacy
  • Terms
  • Advertise
  • Contact us
Facebook X (Twitter) Instagram Pinterest Vimeo
Canadian ReviewsCanadian Reviews
  • What’s On
  • Reviews
  • Digital World
  • Lifestyle
  • Travel
  • Trending
  • Web Stories
Newsletter
Canadian ReviewsCanadian Reviews
You are at:Home » Slop, rage bait, aura farming? Choose your own word of the year for 2025 | Canada Voices
Slop, rage bait, aura farming? Choose your own word of the year for 2025 | Canada Voices
Lifestyle

Slop, rage bait, aura farming? Choose your own word of the year for 2025 | Canada Voices

21 December 20256 Mins Read

Every year, the esteemed dictionaries of the world choose a word – or phrase, number, or even more controversially, an emoji – that represents the past 12 months. These words, picked by dictionary editors based on factors such as search history and frequency of use, attempt to capture the biggest moments in pop culture, online trends or the general vibes of the year. Previous zeitgeist-encompassing words of the year include brain rot, vax, goblin mode and populism.

‘Slop’ is Merriam-Webster’s 2025 word of the year

Of course, everyone’s year is different, which means the elected words don’t always resonate. So The Globe and Mail has compiled eight words we feel best encapsulate 2025 – some chosen by the dictionaries, some by us – and created a choose-your-own adventure questionnaire to uncover which buzzy word best reflects your year. (And if you disagree with your final result, you can start all over again.)


` : “”;

let optionsHtml=””;
if (scene.isEnding) {
optionsHtml=””;
} else {
optionsHtml = scene.options.map((opt, idx) => {
return `

${opt.text}

`;
}).join(“”);
optionsHtml = `

${optionsHtml}

`;
}

const sceneTypeClass = scene.isEnding ? ‘ending-scene’ : ‘choice-scene’;

quizBox.innerHTML = `

${scene.question}

${imgHtml}
${optionsHtml}

`;

if (scene.isEnding) {
const restartBtn = document.getElementById(‘restartBtn’);
if (restartBtn) {
restartBtn.addEventListener(‘click’, restartAdventure);
}
} else {
document.querySelectorAll(‘.quiz-option’).forEach(opt => {
opt.addEventListener(‘click’, function () {
const nextScene = this.dataset.next;
const choiceText = this.dataset.text;
const explanation = this.dataset.explanation;
if (nextScene) {
this.classList.add(‘selected’);
const iconSpan = this.querySelector(‘.quiz-option-icon’);
if (iconSpan) {
const burst = ` `;
iconSpan.innerHTML = `${CHECKMARK_SVG}${burst}`;
}

document.querySelectorAll(‘.quiz-option’).forEach(o => {
o.style.pointerEvents=”none”;
});

showResult(explanation, nextScene);

setTimeout(() => {
const allResultBoxes = document.querySelectorAll(‘.result-box-item’);
const lastResultBox = allResultBoxes[allResultBoxes.length – 1];
if (lastResultBox) {
const elementPosition = lastResultBox.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition – 62; // 52px header + 10px spacing

// Adjust duration in milliseconds
smoothScrollTo(offsetPosition, 650);
}
}, 650);

currentScene = nextScene;
storyPath.push(nextScene);
saveState();
submitChoice(storyPath);
}
});
});
}

updateStartOverButton();
}

function updateStartOverButton() {
const clearBtn = document.getElementById(‘clearQuizBtn’);
const viewAllBtn = document.getElementById(‘viewAllWordsBtn’);
if (!clearBtn) return;

const dynamicAnswers = document.querySelectorAll(‘.answer-section-item’);
const dynamicResults = document.querySelectorAll(‘.result-box-item’);
const isAtStart = currentScene === ‘start’ && dynamicAnswers.length === 0 && dynamicResults.length === 0;

const currentSceneData = storyData[currentScene];
const isAtEnding = currentSceneData && currentSceneData.isEnding;

if (isAtStart) {
clearBtn.classList.add(‘disabled’);
clearBtn.disabled = true;
clearBtn.setAttribute(‘data-tooltip’, ‘Already at the start’);
} else {
clearBtn.classList.remove(‘disabled’);
clearBtn.disabled = false;
clearBtn.removeAttribute(‘data-tooltip’);
}

if (viewAllBtn) {
viewAllBtn.style.display = isAtEnding ? ‘flex’ : ‘none’;
}
}

function showResult(explanation, nextSceneId) {
const pageContainer = document.querySelector(‘.page-container’);
const buttonRow = document.querySelector(‘.button-row’);
if (!pageContainer || !buttonRow) return;

const nextScene = storyData[nextSceneId];
if (!nextScene) return;

// Store current scroll position to prevent auto-scroll
const currentScrollY = window.pageYOffset;

// Create a new answer section
const newAnswerSection = document.createElement(‘div’);
newAnswerSection.className=”answer-section-item”;
const explanationHtml = explanation ? `

${explanation}

` : ”;
newAnswerSection.innerHTML = explanationHtml;
newAnswerSection.style.display = explanation ? ‘block’ : ‘none’;
pageContainer.insertBefore(newAnswerSection, buttonRow);

window.scrollTo(0, currentScrollY);

if (nextScene.isEnding) {
const endingBox = document.createElement(‘div’);
endingBox.className=”result-box-item”;
const endingImgHtml = nextScene.image ? `

Illustration by Drew Shannon

` : “”;
endingBox.innerHTML = `

${nextScene.question}

${endingImgHtml}

`;
pageContainer.insertBefore(endingBox, buttonRow);

updateStartOverButton();
return;
}

const newResultBox = document.createElement(‘div’);
newResultBox.className=”result-box-item”;

const imgHtml = nextScene.image ? `Scene image` : “”;

const nextOptionsHtml = nextScene.options.map((opt, idx) => {
return `

${opt.text}

`;
}).join(“”);

newResultBox.innerHTML = `

${nextScene.question}

${imgHtml}

${nextOptionsHtml}

`;

const scrollBeforeInsert = window.pageYOffset;
pageContainer.insertBefore(newResultBox, buttonRow);
window.scrollTo(0, scrollBeforeInsert);

updateStartOverButton();

newResultBox.querySelectorAll(‘.quiz-option’).forEach(opt => {
opt.addEventListener(‘click’, function () {
const nextScene = this.dataset.next;
const choiceText = this.dataset.text;
const explanation = this.dataset.explanation;
if (nextScene) {
this.classList.add(‘selected’);
const iconSpan = this.querySelector(‘.quiz-option-icon’);
if (iconSpan) {
const burst = ` `;
iconSpan.innerHTML = `${CHECKMARK_SVG}${burst}`;
}

newResultBox.querySelectorAll(‘.quiz-option’).forEach(o => {
o.style.pointerEvents=”none”;
});

showResult(explanation, nextScene);

setTimeout(() => {
const allResultBoxes = document.querySelectorAll(‘.result-box-item’);
const lastResultBox = allResultBoxes[allResultBoxes.length – 1];
if (lastResultBox) {
const elementPosition = lastResultBox.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition – 62; // 52px header + 10px spacing

// Adjust duration here (in milliseconds) – default is 600ms
smoothScrollTo(offsetPosition, 650);
}
}, 300);

currentScene = nextScene;
storyPath.push(nextScene);
saveState();
submitChoice(storyPath);
updateStartOverButton();
}
});
});
}

function restartAdventure() {
currentScene=”start”;
storyPath = [‘start’];
saveState();

const dynamicAnswers = document.querySelectorAll(‘.answer-section-item’);
const dynamicResults = document.querySelectorAll(‘.result-box-item’);

dynamicAnswers.forEach(el => el.remove());
dynamicResults.forEach(el => el.remove());

renderAdventure();
updateStartOverButton();

const quizBox = document.getElementById(‘quizBox’);
if (quizBox) {
const elementPosition = quizBox.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition – 62; // 52px header + 10px spacing
smoothScrollTo(offsetPosition, 650);
}
}

function showAllWords() {
const allEndingScenes = [‘vibe_coding’, ‘slop’, ‘maxxing’, ‘rage_bait’, ‘elbows_up’, ‘six_seven’, ‘parasocial’, ‘aura_farming’];
const pageContainer = document.querySelector(‘.page-container’);
const buttonRow = document.querySelector(‘.button-row’);
const viewAllBtn = document.getElementById(‘viewAllWordsBtn’);
if (!pageContainer || !buttonRow) return;

if (viewAllBtn) {
viewAllBtn.style.display = ‘none’;
}

const currentScrollY = window.pageYOffset;

const allWordsBox = document.createElement(‘div’);
allWordsBox.className=”result-box-item all-words-box”;

let allWordsHtml=”

Words of the year

“;

allEndingScenes.forEach(sceneKey => {
const scene = storyData[sceneKey];
if (scene && scene.isEnding && scene.question) {
const imgHtml = scene.image ? `Scene image

Illustration by Drew Shannon

` : “”;
allWordsHtml += `

${scene.question}

${imgHtml}

`;
}
});

allWordsHtml += ‘

‘;
allWordsBox.innerHTML = allWordsHtml;
pageContainer.insertBefore(allWordsBox, buttonRow);

// Restore scroll position to prevent jump
window.scrollTo(0, currentScrollY);

// Now smoothly scroll to the new content
setTimeout(() => {
const elementPosition = allWordsBox.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition – 62;
smoothScrollTo(offsetPosition, 650);
}, 50);
}

function saveState() {
localStorage.setItem(STORAGE_KEY, JSON.stringify({
currentScene,
storyPath
}));
}

function loadState() {
return;

const raw = localStorage.getItem(STORAGE_KEY);
if (!raw) return;
try {
const state = JSON.parse(raw);
if (state.currentScene && state.storyPath) {
const scene = storyData[state.currentScene];
if (scene && scene.isEnding) {
localStorage.removeItem(STORAGE_KEY);
return;
}
currentScene = state.currentScene;
storyPath = state.storyPath;
}
} catch {
}
}

const CHECKMARK_SVG = ` `;
const XMARK_SVG = ` `;

function smoothScrollTo(targetPosition, duration = 600) {
const startPosition = window.pageYOffset;
const distance = targetPosition – startPosition;
let startTime = null;

function animation(currentTime) {
if (startTime === null) startTime = currentTime;
const timeElapsed = currentTime – startTime;
const progress = Math.min(timeElapsed / duration, 1);

const ease = progress < 0.5
? 2 * progress * progress
: 1 – Math.pow(-2 * progress + 2, 2) / 2;

window.scrollTo(0, startPosition + distance * ease);

if (timeElapsed < duration) {
requestAnimationFrame(animation);
}
}

requestAnimationFrame(animation);
}

loadState();
renderAdventure();
updateStartOverButton();

function submitChoice(path) {
const endpoint=”https://script.google.com/macros/s/AKfycbz6_5ByuzfNp25NRzYC9DzDbNyCN4Ma195Etl-PXb39GJUAqOmZ8IttJdlRB0vqRcs7/exec”;

fetch(endpoint, {
method: ‘POST’,
body: JSON.stringify({
storyPath: path.join(‘ -> ‘),
timestamp: new Date().toISOString()
}),
headers: { ‘Content-Type’: ‘application/json’ }
}).catch(err => {
console.log(‘Submission error:’, err);
});
}

Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email

Related Articles

What should you say to teens feeling pressured to fit in? | Canada Voices

What should you say to teens feeling pressured to fit in? | Canada Voices

Lifestyle 20 March 2026
Happy first day of spring! Montreal is getting heavy snow & a special weather statement

Happy first day of spring! Montreal is getting heavy snow & a special weather statement

Lifestyle 20 March 2026
Super Mario Bros. Wonder Talking Flower toy is a jump scare machine

Super Mario Bros. Wonder Talking Flower toy is a jump scare machine

Lifestyle 20 March 2026
'Secret Lives of Mormon Wives' Cast Raised Concerns About Taylor Frankie Paul in Meeting with ABC Executives

'Secret Lives of Mormon Wives' Cast Raised Concerns About Taylor Frankie Paul in Meeting with ABC Executives

Lifestyle 20 March 2026
Live updates: Israeli strikes hit Tehran as Iranian drones target Gulf energy facilities

Live updates: Israeli strikes hit Tehran as Iranian drones target Gulf energy facilities

Lifestyle 20 March 2026
Pierre Poilievre & Joe Rogan said Trump’s call to annex Canada was ‘a crazy thing to say’

Pierre Poilievre & Joe Rogan said Trump’s call to annex Canada was ‘a crazy thing to say’

Lifestyle 20 March 2026
Top Articles
As an ER doc and a mom. Here are five things I don’t let my kids do because the risks are too high | Canada Voices

As an ER doc and a mom. Here are five things I don’t let my kids do because the risks are too high | Canada Voices

11 January 2026257 Views
Old family photos collecting dust? Here’s how to get rid of them without letting go of the memories | Canada Voices

Old family photos collecting dust? Here’s how to get rid of them without letting go of the memories | Canada Voices

27 December 2025214 Views
9 Longest-Lasting Nail Polishes, Tested by Top Manicurists

9 Longest-Lasting Nail Polishes, Tested by Top Manicurists

25 January 2026179 Views
These BookTok influencers are finding success in turning reading into a game | Canada Voices

These BookTok influencers are finding success in turning reading into a game | Canada Voices

27 December 2025115 Views
Demo
Don't Miss
Paul Gross, Cabaret, and Ann-Marie MacDonald headline Canadian Stage’s 2026-27 season, Theater News
Reviews 20 March 2026

Paul Gross, Cabaret, and Ann-Marie MacDonald headline Canadian Stage’s 2026-27 season, Theater News

iPhoto caption: Goodnight Desdemona (Good Morning Juliet). Jessica B. Hill, Praneet Akilla, Ann-Marie MacDonald,…

'Secret Lives of Mormon Wives' Cast Raised Concerns About Taylor Frankie Paul in Meeting with ABC Executives

'Secret Lives of Mormon Wives' Cast Raised Concerns About Taylor Frankie Paul in Meeting with ABC Executives

Why people really hate AI

Why people really hate AI

Live updates: Israeli strikes hit Tehran as Iranian drones target Gulf energy facilities

Live updates: Israeli strikes hit Tehran as Iranian drones target Gulf energy facilities

About Us
About Us

Canadian Reviews is your one-stop website for the latest Canadian trends and things to do, follow us now to get the news that matters to you.

Facebook X (Twitter) Pinterest YouTube WhatsApp
Our Picks
REVIEW: This year’s TOsketchfest paid tribute to the endless possibilities of sketch comedy

REVIEW: This year’s TOsketchfest paid tribute to the endless possibilities of sketch comedy

What should you say to teens feeling pressured to fit in? | Canada Voices

What should you say to teens feeling pressured to fit in? | Canada Voices

Happy first day of spring! Montreal is getting heavy snow & a special weather statement

Happy first day of spring! Montreal is getting heavy snow & a special weather statement

Most Popular
Why You Should Consider Investing with IC Markets

Why You Should Consider Investing with IC Markets

28 April 202430 Views
OANDA Review – Low costs and no deposit requirements

OANDA Review – Low costs and no deposit requirements

28 April 2024363 Views
LearnToTrade: A Comprehensive Look at the Controversial Trading School

LearnToTrade: A Comprehensive Look at the Controversial Trading School

28 April 202480 Views
© 2026 ThemeSphere. Designed by ThemeSphere.
  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact us

Type above and press Enter to search. Press Esc to cancel.