in Ruby, everything has its "class"
Even the numbers. 1.class will give you Integer.
One more thing. You can make your own class with the "class" keyword.
class YourClass end yours = YourClass.new # remember "new" here yours.class
will return "YourClass"
See you next time!