**Impact:**
The weak randomness undermines the fairness and unpredictability of the game. A user can gain an unfair advantage by timing or manipulating `searchForEgg` to consistently `mintEgg`.
**Proof of Concept:**
1. Validators can know the values of `block.timestamp` and `block.prevrandao` ahead of time. See the [solidity blog on prevrandao](https://soliditydeveloper.com/prevrandao).
2. User can mine/manipulate their `msg.sender` value.
3. The `eggCounter` is public, allowing off-chain simulation of the random value before sending a transaction.
Using on-chain values as a randomness seed is a [well-documented attack vector](https://betterprogramming.pub/how-to-generate-truly-random-numbers-in-solidity-and-blockchain-9ced6472dbdf) in the blockchain space.
**Recommended Mitigation:**
Consider using a cryptographically provable random number generator such as [Chainlink VRF](https://docs.chain.link/vrf)