What is wrong with this? The list that it outputs looks all weird, the last element (correct one) gets misaligned from the rest. Also I need to run a function that randomizes the elements, where should that go?
<div ng-controller="getAnswers" id="pannel">
<div id="base"></div>
<ul class="answers">
<li ng-repeat="wrong in answers.incorrect" class="answer" id="wrong{{$index}}">{{wrong}}</li>
<li class="answer ng-scope" id="correct">{{answers.correct}}</li>
</ul>
</div>
$scope.answers looks like this
{correct: "작아",
incorrect: ["자가", "작ㅏ", "작"]}