Hasbro Twister Hoopla Challenge 5 Games Age 6+ Toy

J6P0KA01
$13.00 $16.00
In Stock

Description

 TWISTER HOOPLA It's a TWISTER game with a twist! Instead of the game mat, you get 16 colorful rings and five different ways to play! 

Game 1 challenges you to use your bodies to hold the rings in place and the last team standing wins.

Game 2 is a ring toss with your hands and feet to catch!

Game 3 is a race to make it to the finish line with colored rings in hand. 

Game 4 is a fun version of the traditional TWISTER game: scatter the rings and then call out the moves; but don't fall or you're out! 

Game 5 gets you all tangled up with other players as you reach for rings, hang on to your TWISTER T and try to stay on your feet. 

Inside or out, this game makes sure you're ready to throw a TWISTER party just about anywhere! For 2 - 4 players, ages 6 and up. Contents Include: 2 spinners, 16 TWISTER HOOPLA rings, 4 TWISTER Ts and the official TWISTER HOOPLA game guide.

Related Products

You might also like

Whoops! There was an error.
Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_UNKNOWN)
Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes) Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes)" Stacktrace: #0 Symfony\Component\Debug\Exception\FatalErrorException in /home/blacklb/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:129
0
Symfony
\
Component
\
Debug
\
Exception
\
FatalErrorException
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
129
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void