Can a function that has no inputs return a different value with different executions?

For example,


>> x = mystery
x =
     61
>> x = mystery
x =
     49
>> x = mystery
x =
     8
>> x = mystery
x =
     72
>>