Suppose we have the following short sentence and an empty dictionary:
sentence = 'Chess set is a chessboard and a set of chessmen.'
frequencies = {}
Now, we want to calculate the frequencies for each word in this sentence with the help of the dict.setdefault(). Put the steps below in the correct order.