Write a method hello that takes one argument and calls puts so that the output if called with, e.g., hello("Alli") would be Hello there Alli!
Write a class Player that can be initialized with one argument name and returns a player instance with the keys name, health and role.
- The
namekey should be assigned the givennameargument. - The
healthkey should be a random integer from 50 to 100.

