What is the value of result after executing the following code?
result
let result = `${false}${1}`;
"1"
"false true"
"false"
"false1"