importData = async () => { try { const keys = await AsyncStorage.getAllKeys(); const result = await AsyncStorage.multiGet(keys); return result.map(req => req).forEach(console.log); } catch (error) { console.error(error) } }