What does this code display?

The number 3 at the end of the containerThe number 1 at the end of the container

The number 3 at the end of the container.

<html>
<head>
<style>.container {
border: solid 2px #806868;
display: flex;
flex-direction: row;
justify-content: flex-end;
}

.item {
border: 2px solid #457081;
margin: 10px;
}</style> </head>
<body>
  <div class="container">
   <div class="item">1</div>
   <div class="item">2</div>
   <div class="item">3</div>
  </div>
</body>
</html>]]>