After running a task with the `cisco.ios.ios_facts` module, the following data structure is returned.
"ansible_facts": {
"ansible_net_gather_subset": [
"all"
],
"ansible_net_hostname": "csr1000v",
"ansible_net_interfaces": {
"GigabitEthernet1": {
"bandwidth": 1000000,
"description": null,
"ipv4": [
{
"address": "192.168.1.101",
"subnet": "24"
}
],
"macaddress": "0a:de:3f:74:e7:00",
"mediatype": "Virtual",
"mtu": 1500,
"operstatus": "up",
"type": "CSR vNIC"
}
},
"ansible_net_model": "CSR1000V",
"ansible_net_serialnum": "9K8ZW5V7M4S",
"ansible_net_version": "16.09.04"
}
Which Jinja2 expression will correctly extract the serial number of the device?
A. `ansible_facts['ansible_net_serialnum']`
B. `ansible_net_serialnum`
C. `ansible_facts.serialnum`
D. `ansible_facts.ansible_net_serialnum`