I want to print array items like
a b c d e f
g h i j k l
m n o p q r
My array is ["a","b","c","d","e"...] like up to r
I tried like ths
<div ng-repeat="array in arraylist | limitTo:6">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-12" >
<div class="form-group">
<label>{{array}} </label>
</div>
</div>
</div>
But it printing up to f, then how to print all elements in above format?