SELECT
last_name
,
first_name
,
city
,
state
FROM
contacts
WHERE
state
=
'MA'
ORDER BY
last_name
DESC
;