<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Task 2</title>
</head>
<body>
    <script>

        const duck = {
            age: 1,
            name: 'Donald',
            color: 'black'
        }

        const message = `
            My name is ${duck.name}
            I am ${duck.age} years old
        `

        console.log(message)

    </script>
</body>
</html>