Alice's Questlog:
			// Questlog.js
			function Questlog() {
			var currentQuest = 0;
			function logQuest(quest) {
			currentQuest++;
			console.log(currentQuest + " - " + quest);
			}
			}
			Questlog();
		
Current Quest: 0 - Quest for the Holy Grail