type AnswerToQuestion = string | undefined;

const answer: AnswerToQuestion = '42';

// eslint-disable-next-line no-console
console.log(`the answer is ${answer}`);
