PHP - Arrays
You want to create an associative array from two indexed arrays:
Which code correctly creates $arr?
$keys = ["id", "name", "age"];
$values = [101, "Bob", 25];
// Create associative array $arr
Which code correctly creates $arr?
