We've always been at war with {{theEnemy}}.
``` ```js [main.js] Template.main.helpers({ theEnemy() { return Session.get('enemy'); } }); Session.set('enemy', 'Eastasia'); // Page will say "We've always been at war with Eastasia" Session.set('enemy', 'Eurasia'); // Page will change to say "We've always been at war with Eurasia" ``` :::