The line "Open HomeViewController and modify tableView(_:numberOfRowsInSection:) to the following" is incorrect.
The following code to modify the switch statement that returns cells should actually be referring to the tableView(_:cellForRowAt:) method, not the tableView(_:numberOfRowsInSection) since that method doesn't return cells but the code that we're modifying is specifically for the switch case returning cells.
The line "Open HomeViewController and modify tableView(_:numberOfRowsInSection:) to the following" is incorrect.
The following code to modify the switch statement that returns cells should actually be referring to the tableView(_:cellForRowAt:) method, not the tableView(_:numberOfRowsInSection) since that method doesn't return cells but the code that we're modifying is specifically for the switch case returning cells.