I tried using randint to make a number guessing game, but it suspiciously always selected 1. The problem is the lack of seed: ``` static random_device r; static default_random_engine ran(r()); ``` Is what you need.