Chapter 8. The Theme System, Page 195

Location on the page: 
Code example
Chapter: 
8. The Theme System
Error: 


return array(
'breadcrumb' => array(
'arguments' => array ('breadcrumb' => NULL),
);
);

Correction: 


return array(
'breadcrumb' => array(
'arguments' => array('breadcrumb' => NULL),
),
);

Description of the Error: 

Semicolon following array closure should be a comma. Also, extra space after array keyword.