AngularJS ngrepeat w/ span

HTML

<script src="http://code.angularjs.org/1.0.0/angular-1.0.0.js"></script>
<script src="http://www.eyecon.ro/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="http://www.eyecon.ro/bootstrap-datepicker/css/bootstrap.css">
<link rel="stylesheet" href="http://www.eyecon.ro/bootstrap-datepicker/css/datepicker.css">
<div ng-app="myApp" ng-controller="Ctrl">
  (
  <span ng-repeat="label in labels">
    {{label}}
  </span>
  )
</div>

JavaScript

angular.module('myApp', [])
    .controller('Ctrl', ['$scope', function($scope) {
        $scope.labels=["alongwooooooooord", "alongwooooooooord2", "alongwooooooooord3", "ealongwooooooooord5", "falongwooooooooord5"];
    }]);