Implement a method named orNothing.
orNothing accepts two parameters: a count (Int) and a boolean and returns an array of Items of size count.
If the passed boolean is true you should return an array where all references refer to the same Item.
If the passed boolean is false you should return an array where all references refer to different Item
instances.
You can create Item instances with an empty constructor: Item().
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: