Select from the dropdown lists to complete the text.
Complete the last line of the following ruby console output:
>> class Bar; end
=> nil
>> Bar.ancestors
=> [Bar, Object, Kernel, BasicObject]
>> Bar.ancestors.map(&:class)
=> [Class, ( Class, Module ), ( Module, Class ), ( Class, Module )]