Add firstName to lastName.

Great work! Now the site can combine the values of firstName and lastName to create the fullName variable.

Make sure that firstName comes first, and the semicolon comes after lastName.

<html lang="en">
<head>
<style>
body { background-color: white; margin: 0px; } h1 { color: #3b5998; } .header_content { position: relative; margin: 0px; background-color: white; } #banner_picture { width: 100%; margin-bottom: 110px; } #profile_picture { height: 120px; width: 120px; border: 3px; border-style: solid; border-color: white; border-radius: 4px; box-shadow: 0px 0px 4px 1px lightGray; } #profile_picture_container { position: absolute; text-align: center; bottom: 0px; height: 180px; width: 100%; }</style>
</head>
<body>
  <div class="header_content"><img id="banner_picture" src="https://images.getmimo.com/images/873dfbb1-8cbc-4f39-b316-f698ed6bd249" /><div id="profile_picture_container"><img id ="profile_picture" src="https://images.getmimo.com/images/8dbdad96-a78f-4209-91d9-9eec96b8c629"/><h1>MaryJones</h1>
    </div>
  </div>
</body>
</html>
]]>