Code QuizAdvanced

Change File Ownership Command

Spot the wrong command used to transfer file ownership to another user.

Codebash
#!/bin/bash
# Give ownership of report.txt to user 'alice' and group 'staff'
chmod alice:staff report.txt

# Then allow owner read/write
chmod u+rw report.txt

What is the bug in this script?