# [Python 3.8], 53 bytes

<!-- language-all: lang-python -->

 from random import*
 while id:print(id:=randrange(99))

[Try it online!][TIO-kkgzowem]

[Python 3.8]: https://docs.python.org/3.8/
[TIO-kkgzowem]: https://tio.run/##K6gsycjPM7YoKPr/P60oP1ehKDEvBUhl5hbkF5VocZVnZOakKmSmWBUUZeaVaAAZtiAVQJyeqmFpqan5/z8A "Python 3.8 (pre-release) – Try It Online"

Uses the builtin function `id` to avoid assigning a new variable before the loop. `randrange(99)` could be reaplaced by `randint(0,99)` at the same length.