-- Homework 16, problem 2: Roblox level gate. -- -- Given the two variables below, print the correct one of: -- "You can enter the dungeon." -- if level >= 10 AND has_key -- "Level too low." -- if only level is too low -- "Missing the key." -- if only the key is missing -- "Level too low and missing the key."-- if both -- -- Run with: lua exercises/16/homework/02-level-gate.lua local level = 12 local has_key = true -- Your code goes here: