To check whether a set like chat is a subset of another, like friends, we code chat, then .issubset(), with friends between parentheses.
chat
friends
.issubset()
Make sure to pick chat, followed by .issubset, and finally (friends).
.issubset
(friends)