/*
Famous Quote 2: Repeat Exercise 4, but this time store the famous person’s name in a variable called famous_person. Then compose your message and store it in a new variable called message. Print your message.
*/

let famous_person: string = "Albert Einstein";
let message: string = `\"Imagination is more important than knowledge. For knowledge is limited, whereas imagination embraces the entire world, stimulating progress, giving birth to evolution.\" - ${famous_person}`;
console.log(message);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: