下列程序的运行结果是什么?
function getPersonInfo (one, two, three) {
console.log(one)
console.log(two)
console.log(three)
}
const person = 'Lydia'
const age = 21
getPersonInfo `${person} is ${age} years old`
A.
“Lydia” 21 [“”, “ is ”, “ years old”]
B.
[“”, “ is ”, “ years old”] “Lydia” 21
C.
“Lydia” [“”, “ is ”, “ years old”] 21