Question #64

Author: admin
tags: PHP  
$arr1 = [1, 2, 3];
$arr2 = array(1, 2, 3);

var_dump($arr1 === $arr2);
What will be output?
bool(true)
bool(false)
Nothing. There is an error in the code.
Rate the difficulty of the question:
easyhard