Language Basics Php

$scores = array(88, 75, 91, 84); 
list($maths, , $history) = $scores; 
 
@printf("

Maths: %d; English: %d; History: %d; Biology: %d.

\n", 
$maths, $english, $history, $biology); 
?>