public function testPullItemReturnsFalse()
 {
     $fruits = new Collection(['strawberry', 'Orange', 'Yellow', 'Purple']);
     $this->assertFalse($fruits->pull(5));
 }