Start writing down the Fibonacci numbers, using two digits for each one
01 01 02 03 05 08 13 21 34 55 ...
Eventually you will reach three digit numbers. When that happens, any digits apart from the last two "overflow", and are carried back through the sequence like this
... 21 34 55 89
+ 1 44
+ 2 33
-----------------
= ... 21 34 55 90 46 3? ...
This defines a real number, by concatenating the digits of the sequence
$$\phi = 0.01\,01\,02\,03\,05\,08\,13\,21\,34\,55\,90\,46\,3\dots$$
Is $\phi$ rational or irrational?