Hi!
Like some other users, I had problems with passing lesson Services II, where you need to display weather data from array.
It seems to me, codecademy has some problems with task checking system, because my code looks pretty good (on my mind, lol). Here it is:
<div class="forecast" ng-repeat="day in fiveDay.days">
<div class="day row">
<!-- datetime -->
<div class="weekday col-xs-4">
<p>{{ day.datetime | date}}</p>
</div>
<!-- icon -->
<div class="weather col-xs-3">
<img ng-src="{{day.icon}}" />
</div>
<div class="col-xs-1"></div>
<!-- high -->
<div class="high col-xs-2">
<p>{{day.high}} </p>
</div>
<!-- low -->
<div class="low col-xs-2">
<p>{{day.low}}</p>
</div>
</div>
</div>
After some unsuccessful attempts, i’ve restarted lesson and make ctrl + shift + R browser reload (Google Chrome, Windows 10).
After I wrote the code again, reload built-in browser and pressed the RUN, codecaddemy passed me.
May be my topic will be helpful for persons with the same problem