Play-Doh Kitchen Creations Burger Barbecue Age 3+ Toy

J6P0KA48
$14.00 $17.00
In Stock

Description

Grill up the fun and have a Play-Doh barbecue! Pretend lunchtime creations are up to the imagination with these cookout tools. Open the grill and place some Play-Doh compound inside to create silly hamburgers, imaginary hot dogs, and make-believe buns. Create outrageous onion rings and even more Play-Doh toppings on the lid of the grill. The decorator tool features an attachment with different shapes to make funny fries, crazy condiments, and other fun add-ons, and the roller doubles as a handle for the grill. When the cookout creations are ready, show them off with the spatula and plates. With Play-Doh Kitchen Creations, the best ingredient of all is imagination!

Includes grill book-mold, decorator tool with rail, roller, plastic knife, spatula, 2 plates, and 5 cans of Play-Doh Brand Modeling Compound.

  • Creative cooks can grill up the fun at their own Play-Doh barbecue
  • Open the grill to make pretend burgers, make-believe hot dogs, and more
  • Squeeze funny fries and crazy condiments with the decorator tool
  • Grill top has molds for outrageous onion rings and other pretend toppings
  • Includes 5 Play-Doh colors

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 1568768 bytes) Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Allowed memory size of 33554432 bytes exhausted (tried to allocate 1568768 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