-- Homework 12, problem 2: Stat line. -- -- Use string.format to print one line in this exact shape (the gap -- after the name is two spaces; the gap after the level value is -- three spaces): -- -- Keiko Lv 7 HP 95 -- -- Run with: lua exercises/12/homework/02-stat-line.lua local name = "Keiko" local level = 7 local hp = 95 -- Your code goes here: