The log function output a message to the web console.
#[wasm_bindgen(start)]
pub fn main() -> Result<(), JsValue> {
let array = js_sys::Array::new();
array.push(&"Hello Console Log".into());
web_sys::console::log(&array);
Ok(())
}
pub fn log(data: &Array)