How can I write the function which receives an array of objects as parameters like name and age. The function has to add in the end of the body tag using a html list which has the format name, age.
<html>
<head>
<title>Ex2</title>
</head>
<body>
<script>
var body = document.querySelector('body');
body.append('Name Age');
</script>
</body>
</html>