Let's write a script that creates and adds an element to a list of robot kits.

<html>
<body>
<h2>Ron's DIY Robots</h2>
<ul id="list">
<li>🤖Beginner kit</li>
<li>🚗CarBot Kit</li>
</ul>
<script>
var parent = document.getElementById("list");
var bot = document.createElement("li");
bot.innerHTML = "🐈CatBot Kit";
parent.appendChild(bot);
</script>
</body>
</html>]]>