
The one thing no code has ever truly producedEvery number a computer generates is, strictly speaking, fake. When a program calls random(), it runs a deterministic algorithm (a fixed mathematical formula) that produces a sequence of numbers which merely looks unpredictable. Feed it the same starting seed, and you get the exact same sequence every time. This is why they are called pseudo-random number generators. The “pseudo” is doing real work.
