// POEM: Forests are green, oceans are blue. Keep the earth clean, for me and for you
const obj = {
color1: "green",
color2: "blue",
planet: "Earth",
adjective: "clean",
emojis: ["๐", "๐", "๐ผ", "๐ฉ", "๐", "๐ ", "๐ฎ"],
sentence: function() {
//maybe some code here ๐ค
}
};
// Task: Changing only the code ABOVE (lines 1-15), complete the poem and render it on the page.
// stretch goal 1๏ธโฃ: Render the most suitable emoji from the emojis array in the object somewhere
in our poem.
// stretch goal 2๏ธโฃ: Without changing the object declaration above, change sea color to purple!
// stretch goal 3๏ธโฃ: Without changing the CSS file, style the values added from the object.