Self-assignment is when we set a variable to its own value. For example, we can set wallet to its value 3 with wallet = wallet.
wallet
3
wallet = wallet
Make sure to pick wallet, followed by =, and finally wallet.
=