<%
var territories = [{
abbreviation: 'AS',
fips: '60'
}, {
abbreviation: 'GU',
fips: '66'
}, {
abbreviation: 'MP',
fips: '69'
}, {
abbreviation: 'PR',
fips: '72'
}, {
abbreviation: 'VI',
fips: '78'
}];
%>
US Territories
<% territories.forEach(function(territory) { %>
-
<%= territory.abbreviation %>
<% }) %>
<% } %>