

코드 비교시 맞게 작성은 한것 같으나 정상적으로 출력이 되지 않습니다. 도움 부탁드립니다.
작성한 코드 및 에러 메세지
function q1() {
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/sparta_api/seoulair",
data: {},
success: function(response){
let rows = response['RealtimeCityAir']['row']
for (let i = 0; i < rows.length; i++){
let gu_name = rows[i]['MSRSTE_NM']
let gu_mise = rows[i]['IDEX_MVL']
let temp_html = ' <li>${gu_name} : ${gu_mise}</li>'
$('#names-q1').append(temp_html)
}
}
})
